From 3934ba65dab9d32b552ca4fe355da0b873ee514e Mon Sep 17 00:00:00 2001 From: Kacper Date: Wed, 10 Dec 2025 03:58:03 +0100 Subject: [PATCH] fix(electron): correct IPC handler closure in main.js - Fixed the closure of the IPC handler in main.js to ensure proper function execution. --- app/electron/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/electron/main.js b/app/electron/main.js index 225f473f..abba3d31 100644 --- a/app/electron/main.js +++ b/app/electron/main.js @@ -657,7 +657,7 @@ ipcMain.handle( return { success: false, error: error.message }; } } -}); +); // ============================================================================ // Claude CLI Detection IPC Handlers