diff --git a/ui/desktop/src/main.ts b/ui/desktop/src/main.ts index bde22a1aaff9..98e38f609f0b 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, @@ -1153,9 +1152,6 @@ const createChat = async (app: App, options: CreateChatOptions = {}) => { windowPowerSaveBlockers.delete(windowId); } - if (goosedProcess && typeof goosedProcess === 'object' && 'kill' in goosedProcess) { - goosedProcess.kill(); - } }); return mainWindow; };