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; };