From 09fd93cd028cdd18024c9c6fcf2d6a484617fb41 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Thu, 19 Feb 2026 23:29:30 +1300 Subject: [PATCH] fix: add missing videoTrim case to executeWorkflow switch Without this, videoTrim nodes were silently skipped during full workflow execution (Cmd+Enter). The regenerateNode and executeSelectedNodes paths already had it. Co-Authored-By: Claude Opus 4.6 --- src/store/workflowStore.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/store/workflowStore.ts b/src/store/workflowStore.ts index 204eee26..678957c6 100644 --- a/src/store/workflowStore.ts +++ b/src/store/workflowStore.ts @@ -941,6 +941,9 @@ export const useWorkflowStore = create((set, get) => ({ case "easeCurve": await executeEaseCurve(executionCtx); break; + case "videoTrim": + await executeVideoTrim(executionCtx); + break; case "videoFrameGrab": await executeVideoFrameGrab(executionCtx); break;