Skip to content

Commit

Permalink
fix: rollupscan route
Browse files Browse the repository at this point in the history
  • Loading branch information
Holybasil committed Dec 30, 2024
1 parent 8c8197c commit 3aa37db
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 3aa37db

Please sign in to comment.