diff --git a/libs/auth/src/angular/login/login.component.ts b/libs/auth/src/angular/login/login.component.ts index 061604ce26d..d025e7f1566 100644 --- a/libs/auth/src/angular/login/login.component.ts +++ b/libs/auth/src/angular/login/login.component.ts @@ -177,7 +177,10 @@ export class LoginComponentV2 implements OnInit, OnDestroy { const authResult = await this.loginStrategyService.logIn(credentials); await this.saveEmailSettings(); + await this.handleAuthResult(authResult); + }; + private async handleAuthResult(authResult: AuthResult): Promise { if (this.handleCaptchaRequired(authResult)) { return; } @@ -224,7 +227,7 @@ export class LoginComponentV2 implements OnInit, OnDestroy { await this.router.navigate(["vault"]); // Desktop } } - }; + } protected async goAfterLogIn(userId: UserId): Promise { const masterPassword = this.formGroup.value.masterPassword;