Skip to content

Commit 3aa37db

Browse files
committed
fix: rollupscan route
1 parent 8c8197c commit 3aa37db

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)