This commit is contained in:
2026-01-05 19:35:49 +01:00
parent b4b915416b
commit d9e6151ae0
92 changed files with 10964 additions and 7893 deletions

View File

@@ -79,7 +79,7 @@ export class LandingService {
const signupParams: SignupParamsDTO = {
email,
password: 'temp_password_' + Math.random().toString(36).substring(7), // Temporary password
displayName: email.split('@')[0], // Use email prefix as display name
displayName: email.split('@')[0] || 'user', // Use email prefix as display name, fallback to 'user'
};
const session: AuthSessionDTO = await this.authApi.signup(signupParams);