Skip to content

Commit

Permalink
Merge pull request #1390 from scroll-tech/rollupscan
Browse files Browse the repository at this point in the history
fix: rollupscan route
  • Loading branch information
Holybasil authored Dec 30, 2024
2 parents 8c8197c + 3aa37db commit c043654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/rollupscan/index/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ const RollupTable = forwardRef<any, any>(function RollupTable(props, ref) {
{data.map((row: any) => (
<CustomTableRow key={row.id} className={cx(`rollup-batch-${row.index}`, currentClickedBatch === row.index && "rowActive")}>
<TableCell>
<Link component={RouterLink} href={`batch/${row.index}`}>
<Link component={RouterLink} href={`/rollupscan/batch/${row.index}`}>
{row.index}
</Link>
</TableCell>
Expand Down

0 comments on commit c043654

Please sign in to comment.