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

Return early when navigating to force reset password route

This commit is contained in:
Bernd Schoolmann
2025-01-20 12:11:18 +01:00
parent 6bfda240d4
commit 7d73086f55

View File

@@ -494,6 +494,7 @@ export class LoginViaAuthRequestComponent implements OnInit, OnDestroy {
)) !== ForceSetPasswordReason.None
) {
await this.router.navigate([this.forceResetPasswordRoute]);
return;
}
await this.handleSuccessfulLoginNavigation(userId);