We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00149a0 commit 2b36a59Copy full SHA for 2b36a59
backend/src/auth/auth.service.ts
@@ -152,7 +152,7 @@ export class AuthService {
152
153
// If the user exists but email is not confirmed and mail is enabled
154
if (existingUser && !existingUser.isEmailConfirmed && this.isMailEnabled) {
155
- // Just update the existing user and resend verification email
+ // Just update the existing user and resend verification email
156
existingUser.username = username;
157
existingUser.password = hashedPassword;
158
await this.userRepository.save(existingUser);
0 commit comments