1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 05:53:42 +00:00

refactor(email-verification-feature-flag): [PM-7882] Email Verification - Made for accessors consistent.

This commit is contained in:
Patrick Pimentel
2025-01-06 12:21:22 -05:00
parent cf6079a2ca
commit fd1834c5b6

View File

@@ -337,8 +337,8 @@ export class LoginComponentV1 extends CaptchaProtectedComponent implements OnIni
}
protected async saveEmailSettings() {
this.loginEmailService.setLoginEmail(this.formGroup.controls["email"].value);
this.loginEmailService.setRememberEmail(this.formGroup.controls["rememberEmail"].value);
this.loginEmailService.setLoginEmail(this.formGroup.controls.email.value);
this.loginEmailService.setRememberEmail(this.formGroup.controls.rememberEmail.value);
await this.loginEmailService.saveEmailSettings();
}