Skip to content

Commit c043654

Browse files
authored
Merge pull request #1390 from scroll-tech/rollupscan
fix: rollupscan route
2 parents 8c8197c + 3aa37db commit c043654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/rollupscan/index/Table.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ const RollupTable = forwardRef<any, any>(function RollupTable(props, ref) {
202202
{data.map((row: any) => (
203203
<CustomTableRow key={row.id} className={cx(`rollup-batch-${row.index}`, currentClickedBatch === row.index && "rowActive")}>
204204
<TableCell>
205-
<Link component={RouterLink} href={`batch/${row.index}`}>
205+
<Link component={RouterLink} href={`/rollupscan/batch/${row.index}`}>
206206
{row.index}
207207
</Link>
208208
</TableCell>

0 commit comments

Comments
 (0)