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)