From 2a630859fb162a2a060bcef1b6c768821eef7693 Mon Sep 17 00:00:00 2001 From: Siddharth Ganesan Date: Sun, 25 Jan 2026 14:31:12 -0800 Subject: [PATCH] Fix validation --- apps/sim/lib/copilot/tools/client/workflow/edit-workflow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/lib/copilot/tools/client/workflow/edit-workflow.ts b/apps/sim/lib/copilot/tools/client/workflow/edit-workflow.ts index 55ffdaa93..2ef41a14b 100644 --- a/apps/sim/lib/copilot/tools/client/workflow/edit-workflow.ts +++ b/apps/sim/lib/copilot/tools/client/workflow/edit-workflow.ts @@ -178,7 +178,7 @@ export class EditWorkflowClientTool extends BaseClientTool { async handleReject(): Promise { const logger = createLogger('EditWorkflowClientTool') logger.info('handleReject called', { toolCallId: this.toolCallId, state: this.getState() }) - // Tool was already marked complete in execute() - this is just for UI state + // Tool was already marked complete in execute() - this is for UI state this.setState(ClientToolCallState.rejected) }