Skip to content

Commit

Permalink
ar(feat) [DPCP-40]: Parse Services.
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloreale committed Aug 26, 2024
1 parent 7bc5838 commit 3bdf1b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/[locale]/dash/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import { providers, getCsrf } from '@auth';
import { VSignUp } from '@components/client';
import styles from '@styles/page.module.css';

export default async function SignUp({ params }) {
export default async function SignUp() {
const csrf = await getCsrf();

return (
<main className={styles.main}>
<article>
<VSignUp providers={providers} csrf={csrf} user={params?.user} />
<VSignUp providers={providers} csrf={csrf} />
</article>
</main>
);
Expand Down

0 comments on commit 3bdf1b2

Please sign in to comment.