From bf4e7b27dc2a4e3ea251db10f9d657f115a18262 Mon Sep 17 00:00:00 2001 From: john Date: Tue, 17 Jun 2025 09:46:21 +0200 Subject: [PATCH] just ignore email always --- src/app/auth/authService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/auth/authService.ts b/src/app/auth/authService.ts index c167989..ad1c9bc 100644 --- a/src/app/auth/authService.ts +++ b/src/app/auth/authService.ts @@ -46,7 +46,7 @@ export class AuthService { async createSignupCode(code: string, name: string) { const res = await this.client.POST('/auth/signup-codes', { - body: { code, name }, + body: { code, email: '', name }, credentials: 'include', })