From ec7abca6dd38b138af8627ca6178ec2c67c309d9 Mon Sep 17 00:00:00 2001 From: Pedram Amini Date: Thu, 5 Feb 2026 15:37:13 -0600 Subject: [PATCH] bugfix, missing import --- src/main/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/index.ts b/src/main/index.ts index 930981b6..e82189b7 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -50,6 +50,7 @@ import { registerNotificationsHandlers, registerSymphonyHandlers, registerTabNamingHandlers, + registerAgentErrorHandlers, setupLoggerEventForwarding, cleanupAllGroomingSessions, getActiveGroomingSessionCount, @@ -597,6 +598,7 @@ function setupIpcHandlers() { // Claude Code sessions - extracted to src/main/ipc/handlers/claude.ts // Agent Error Handling API - extracted to src/main/ipc/handlers/agent-error.ts + registerAgentErrorHandlers(); // Register notification handlers (extracted to handlers/notifications.ts) registerNotificationsHandlers();