From 88b5765eacb359527af1c0c27d5efcfa22221355 Mon Sep 17 00:00:00 2001 From: Douwe Osinga Date: Tue, 19 May 2026 09:28:31 -0400 Subject: [PATCH] fix: stop killing goosed when a window closes (#9302) Signed-off-by: Douwe Osinga Co-authored-by: Douwe Osinga --- ui/desktop/src/main.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui/desktop/src/main.ts b/ui/desktop/src/main.ts index 617816ec..1825bc1c 100644 --- a/ui/desktop/src/main.ts +++ b/ui/desktop/src/main.ts @@ -810,7 +810,6 @@ const createChat = async (app: App, options: CreateChatOptions = {}) => { const { baseUrl, workingDir, - process: goosedProcess, errorLog, stopErrorLogCollection, startupDiagnosticsPath, @@ -1161,9 +1160,6 @@ const createChat = async (app: App, options: CreateChatOptions = {}) => { windowPowerSaveBlockers.delete(windowId); } - if (goosedProcess && typeof goosedProcess === 'object' && 'kill' in goosedProcess) { - goosedProcess.kill(); - } }); return mainWindow; };