just ignore email always

This commit is contained in:
john 2025-06-17 09:46:21 +02:00
parent 1710d5d91d
commit bf4e7b27dc

View file

@ -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',
})