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) {