1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 13:40:06 +00:00

Merge conflict

This commit is contained in:
Todd Martin
2025-03-21 10:52:38 -04:00
parent 0dd142892a
commit 3a2e6ba243

View File

@@ -187,9 +187,9 @@ export class LoginViaAuthRequestComponent implements OnInit, OnDestroy {
private async initStandardAuthRequestFlow(): Promise<void> {
this.flow = Flow.StandardAuthRequest;
this.email = (await firstValueFrom(this.loginEmailService.loginEmail$)) || undefined;
const email = (await firstValueFrom(this.loginEmailService.loginEmail$)) || undefined;
if (!this.email) {
if (!email) {
await this.handleMissingEmail();
return;
}