Skip to content

Commit

Permalink
fix(repo): Add path to sign-up in nextjs playground (#2406)
Browse files Browse the repository at this point in the history
* fix(repo): Add path to sign-up in nextjs playground

* fix(repo): Add path to sign-up in nextjs playground
  • Loading branch information
panteliselef authored Dec 19, 2023
1 parent bf09d18 commit f36dca6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .changeset/lemon-rocks-act.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
2 changes: 1 addition & 1 deletion playground/nextjs/pages/sign-in/[[...index]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { NextPage } from 'next';
const SignInPage: NextPage = () => {
return (
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }}>
<SignIn />
<SignIn path='/sign-in' />
</div>
);
};
Expand Down
2 changes: 1 addition & 1 deletion playground/nextjs/pages/sign-up/[[...index]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { NextPage } from 'next';
const SignUpPage: NextPage = () => {
return (
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }}>
<SignUp />
<SignUp path='/sign-up' />
</div>
);
};
Expand Down

0 comments on commit f36dca6

Please sign in to comment.