Skip to content

Commit

Permalink
Merge pull request #333 from Lukasdotcom/href
Browse files Browse the repository at this point in the history
Adds missing href attribute to links
  • Loading branch information
Lukasdotcom authored Dec 12, 2022
2 parents cdf3705 + 123c1ab commit 6780dc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const Home = forwardRef<HTMLAnchorElement, Props>(function Home(props, ref) {
} else {
return (
<NextLink ref={ref} href={href} legacyBehavior={true}>
<MuiLink {...other} sx={{ cursor: "pointer" }}>
<MuiLink {...other} href={href} sx={{ cursor: "pointer" }}>
{children}
</MuiLink>
</NextLink>
Expand Down

0 comments on commit 6780dc0

Please sign in to comment.