Skip to content

Commit f4aa4f8

Browse files
committed
set prefetch false for table links
1 parent 824b550 commit f4aa4f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/by/[rankingType]/components/link-with-stop-propagation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type LinkWithStopPropagationProps = {
1010

1111
export const LinkWithStopPropagation: FC<LinkWithStopPropagationProps> = ({ children, href }) => {
1212
return (
13-
<Link href={href} onClick={(event) => event.stopPropagation()}>
13+
<Link href={href} onClick={(event) => event.stopPropagation()} prefetch={false}>
1414
{children}
1515
</Link>
1616
);

0 commit comments

Comments
 (0)