Skip to content

Commit

Permalink
Merge pull request #894 from auth0/next-13.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath authored Nov 2, 2022
2 parents 96e750b + 70be143 commit f0a584e
Show file tree
Hide file tree
Showing 5 changed files with 725 additions and 1,506 deletions.
4 changes: 2 additions & 2 deletions examples/basic-example/components/header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ const Header = () => {
<nav>
<ul>
<li>
<Link href="/">
<Link href="/" legacyBehavior>
<a>Home</a>
</Link>
</li>
<li>
<Link href="/protected-page">
<Link href="/protected-page" legacyBehavior>
<a>Protected Page</a>
</Link>
</li>
Expand Down
8 changes: 4 additions & 4 deletions examples/kitchen-sink-example/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@ const Header = (): React.ReactElement => {
<nav>
<ul>
<li>
<Link href="/">
<Link href="/" legacyBehavior>
<a>Home</a>
</Link>
</li>
<li>
<Link href="/about">
<Link href="/about" legacyBehavior>
<a>About</a>
</Link>
</li>
<li>
<Link href="/shows">
<Link href="/shows" legacyBehavior>
<a>TV Shows</a>
</Link>
</li>
{user ? (
<>
<li>
<Link href="/profile">
<Link href="/profile" legacyBehavior>
<a>Profile</a>
</Link>
</li>{' '}
Expand Down
Loading

0 comments on commit f0a584e

Please sign in to comment.