From 88b445c7c6933820dd3822ffc5aead9ac7e8f6e6 Mon Sep 17 00:00:00 2001 From: Jonathan Dobson Date: Mon, 18 Aug 2025 10:07:21 -0400 Subject: [PATCH] make all blocks debuggable (#3221) --- .../src/routes/workflows/types/workflowTypes.ts | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/types/workflowTypes.ts b/skyvern-frontend/src/routes/workflows/types/workflowTypes.ts index 667ccc8a..970dc8d2 100644 --- a/skyvern-frontend/src/routes/workflows/types/workflowTypes.ts +++ b/skyvern-frontend/src/routes/workflows/types/workflowTypes.ts @@ -216,17 +216,10 @@ export const WorkflowBlockTypes = { HttpRequest: "http_request", } as const; -export const debuggableWorkflowBlockTypes: Set = new Set([ - "action", - "extraction", - "goto_url", - "login", - "navigation", - "task", - "task_v2", - "text_prompt", - "validation", -]); +// all of them +export const debuggableWorkflowBlockTypes: Set = new Set( + Object.values(WorkflowBlockTypes), +); export const scriptableWorkflowBlockTypes: Set = new Set([ "action",