From 8e812183135ddd4f6fbce9ae71ff4376da9d6b6b Mon Sep 17 00:00:00 2001 From: rr-bw <102181210+rr-bw@users.noreply.github.com> Date: Wed, 12 Nov 2025 11:03:13 -0800 Subject: [PATCH] update variable name --- apps/browser/src/popup/app.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/browser/src/popup/app.component.ts b/apps/browser/src/popup/app.component.ts index f83fc594205..e4cb8a654c4 100644 --- a/apps/browser/src/popup/app.component.ts +++ b/apps/browser/src/popup/app.component.ts @@ -362,7 +362,7 @@ export class AppComponent implements OnInit, OnDestroy { } private async processPendingAuthRequests() { - this.processingPendingAuth = true; + this.processingPendingAuthRequests = true; try { // Always query server for all pending requests and open a dialog for each @@ -392,7 +392,7 @@ export class AppComponent implements OnInit, OnDestroy { } } } finally { - this.processingPendingAuth = false; + this.processingPendingAuthRequests = false; } } }