From 62b06d00dec8ce6abe495fe1f26bac6039349b67 Mon Sep 17 00:00:00 2001 From: Siddharth Ganesan Date: Sun, 25 Jan 2026 14:33:27 -0800 Subject: [PATCH] Fix comments --- 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 2ef41a14b..55ffdaa93 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 for UI state + // Tool was already marked complete in execute() - this is just for UI state this.setState(ClientToolCallState.rejected) }