From 3075a567353b0599bc8f39171d92283bd14897ec Mon Sep 17 00:00:00 2001 From: "SPRINX0\\prochazka" Date: Tue, 17 Jun 2025 15:42:16 +0200 Subject: [PATCH] fixed cloud login --- packages/web/src/utility/simpleTools.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/utility/simpleTools.ts b/packages/web/src/utility/simpleTools.ts index fb0ac8e68..77164e211 100644 --- a/packages/web/src/utility/simpleTools.ts +++ b/packages/web/src/utility/simpleTools.ts @@ -3,7 +3,7 @@ import getElectron from './getElectron'; export function openWebLink(href, usePopup = false) { const electron = getElectron(); - if (electron && !usePopup) { + if (electron) { electron.send('open-link', href); } else { if (usePopup) {