Skip to content

Commit

Permalink
Update 'next' to '13.5.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
SpecialAro committed Sep 29, 2023
1 parent a08dd39 commit 3cff707
Show file tree
Hide file tree
Showing 3 changed files with 770 additions and 339 deletions.
13 changes: 8 additions & 5 deletions components/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ type Props = { children: ReactNode; href: string; ["aria-label"]?: string; neutr

const Link = (props: Props) => {
return (
<NextLink href={props.href}>
<a aria-label={props["aria-label"]} className={props.neutral ? styles.neutral : undefined}>
{props.children}
</a>
</NextLink>
(<NextLink
href={props.href}
aria-label={props["aria-label"]}
className={props.neutral ? styles.neutral : undefined}>

{props.children}

</NextLink>)
);
};

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
"@mdi/js": "6.6.96",
"@mdi/react": "1.6.0",
"@octokit/rest": "19.0.3",
"next": "12.1.5",
"react": "18.0.0",
"react-dom": "18.0.0"
"next": "13.5.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "17.0.27",
"@types/react": "18.0.6",
"@types/react-dom": "18.0.2",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"eslint-config-next": "13.5.2",
"next-sitemap": "2.5.20",
"sass": "1.50.1",
"typescript": "4.6.3"
Expand Down
Loading

0 comments on commit 3cff707

Please sign in to comment.