Fix insights prop passed to Link (#2760)

This commit is contained in:
Samy Pessé
2025-01-21 07:52:00 +01:00
committed by GitHub
parent b6c3870eda
commit b46cff70c0
@@ -57,7 +57,7 @@ export const Link = React.forwardRef(function Link(
}
return (
<NextLink ref={ref} {...props} onClick={onClick}>
<NextLink ref={ref} href={href} prefetch={prefetch} {...domProps} onClick={onClick}>
{children}
</NextLink>
);