From 5d28c357b9babf2bd2b7d75ea793afe36a7709b9 Mon Sep 17 00:00:00 2001 From: Siddharth Ganesan Date: Sat, 24 Jan 2026 12:23:47 -0800 Subject: [PATCH] Fix --- .../panel/components/copilot/components/tool-call/tool-call.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx index b869ee911..5d1f37bf9 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx @@ -1260,8 +1260,6 @@ async function handleRun( const instance = getClientTool(toolCall.id) if (!instance && isIntegrationTool(toolCall.name)) { - // Note: Don't set state to 'executing' here - executeIntegrationTool handles it internally - // and has a guard that skips if already executing (which would cause the tool to get stuck) onStateChange?.('executing') try { await useCopilotStore.getState().executeIntegrationTool(toolCall.id)