From c00069a8d1d022beafcdfe01d11ee73d74c67117 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 29 Jul 2026 21:26:09 +0200 Subject: [PATCH] fix(desktop): create quick-entry window lazily Creating it at startup meant two renderers ran checkAuth() concurrently and raced over the single-use refresh token. showQuickEntry() already creates it on demand, including for the --quick-entry launch flag. --- desktop/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/desktop/main.js b/desktop/main.js index cf0a44828..92f6a65b6 100644 --- a/desktop/main.js +++ b/desktop/main.js @@ -585,7 +585,6 @@ app.whenReady().then(() => { startServer(() => { createMainWindow() - createQuickEntryWindow() setupTray() registerQuickEntryShortcut(DEFAULT_QUICK_ENTRY_SHORTCUT)