diff --git a/src/app/actions/auth.ts b/src/app/actions/auth.ts index 193327d..5b3379e 100644 --- a/src/app/actions/auth.ts +++ b/src/app/actions/auth.ts @@ -152,7 +152,7 @@ export async function registration( ): Promise { const accountType = formData.get('accountType') as 'b2b' | 'b2c'; - const mail_verified = true; + const mail_verified = false; const fullName = formData.get('fullName') as string || ''; const email = formData.get('email') as string || ''; const password = formData.get('password') as string || '';