Skip to content

Commit

Permalink
chore: synchronize workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jan 8, 2025
1 parent 98defe7 commit 5699c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code-examples/protect-page-login/nextjs-12/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "../styles/globals.css"

// Use any because of React 18 breaking change: https://github.com/vercel/next.js/issues/36019
export default function App({ Component, pageProps }: any) {
export default function MyApp({ Component, pageProps }: any) {
return <Component {...pageProps} />
}

0 comments on commit 5699c31

Please sign in to comment.