From 39bce23d78bac03eac159c4fd736fb73deaf85c2 Mon Sep 17 00:00:00 2001 From: rr-bw <102181210+rr-bw@users.noreply.github.com> Date: Sat, 18 Oct 2025 21:44:12 -0700 Subject: [PATCH] rename variable --- .../desktop-auth-request-answering.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/auth/services/auth-request-answering/desktop-auth-request-answering.service.ts b/apps/desktop/src/auth/services/auth-request-answering/desktop-auth-request-answering.service.ts index 47aca132561..cd7647e5ec4 100644 --- a/apps/desktop/src/auth/services/auth-request-answering/desktop-auth-request-answering.service.ts +++ b/apps/desktop/src/auth/services/auth-request-answering/desktop-auth-request-answering.service.ts @@ -62,9 +62,9 @@ export class DesktopAuthRequestAnsweringService // To show an approval dialog immediately on Desktop, the window must be open. const isWindowVisible = await ipc.platform.isWindowVisible(); - const meetsExtensionConditions = meetsBasicConditions && isWindowVisible; + const meetsDesktopConditions = meetsBasicConditions && isWindowVisible; - return meetsExtensionConditions; + return meetsDesktopConditions; } async handleAuthRequestNotificationClicked(event: SystemNotificationEvent) {