You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1260,7 +1260,8 @@ async function handleRun(
1260
1260
constinstance=getClientTool(toolCall.id)
1261
1261
1262
1262
if(!instance&&isIntegrationTool(toolCall.name)){
1263
-
setToolCallState(toolCall,'executing')
1263
+
// Note: Don't set state to 'executing' here - executeIntegrationTool handles it internally
1264
+
// and has a guard that skips if already executing (which would cause the tool to get stuck)
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/components/deploy-modal/deploy-modal.tsx
0 commit comments