Skip to content

Commit

Permalink
chore(nextjs,repo): Update NextJs playground
Browse files Browse the repository at this point in the history
  • Loading branch information
octoper committed Dec 8, 2023
1 parent 2fd1f7f commit 479ee7e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/nextjs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export {
OrganizationList,
OrganizationProfile,
OrganizationSwitcher,
UserProfile,
SignIn,
SignInButton,
SignInWithMetamaskButton,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const CreateOrganizationPage: NextPage = () => {
<div
style={{ display: 'flex', flexDirection: 'column', gap: '2rem', justifyContent: 'center', alignItems: 'center' }}
>
<CreateOrganization />
<CreateOrganization path='/create-organization' routing='path' />
</div>
);
};
Expand Down
2 changes: 1 addition & 1 deletion playground/nextjs/pages/organization/[[...index]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const OrganizationProfilePage: NextPage = () => {
<div
style={{ display: 'flex', flexDirection: 'column', gap: '2rem', justifyContent: 'center', alignItems: 'center' }}
>
<OrganizationProfile />
<OrganizationProfile path='/organization' routing='path' />
</div>
);
};
Expand Down
2 changes: 1 addition & 1 deletion playground/nextjs/pages/user/[[...index]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const getServerSideProps: GetServerSideProps = async context => {
const UserProfilePage: NextPage = () => {
return (
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }}>
<UserProfile />
<UserProfile path='/user' routing='path' />
</div>
);
};
Expand Down

0 comments on commit 479ee7e

Please sign in to comment.