From f54c0fcb19a7360ffbd403c3040be2cbe4abed7a Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 27 Mar 2025 18:36:25 -0700 Subject: [PATCH] update code block node comments (#2035) --- .../src/routes/workflows/editor/nodes/CodeBlockNode/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyvern-frontend/src/routes/workflows/editor/nodes/CodeBlockNode/types.ts b/skyvern-frontend/src/routes/workflows/editor/nodes/CodeBlockNode/types.ts index 7bbca650..422c3801 100644 --- a/skyvern-frontend/src/routes/workflows/editor/nodes/CodeBlockNode/types.ts +++ b/skyvern-frontend/src/routes/workflows/editor/nodes/CodeBlockNode/types.ts @@ -10,6 +10,6 @@ export type CodeBlockNode = Node; export const codeBlockNodeDefaultData: CodeBlockNodeData = { editable: true, label: "", - code: `# All variables will be assigned to the output of this block.\n# Like 'x = 5', 'x' will be assigned to the output of this block.\n# This feature is currently in private beta. Please reach out to founders@skyvern.com to get access\n\n`, + code: `# This feature is currently in private beta. Please reach out to founders@skyvern.com to get access\n# All variables will be assigned to the output of this block.\n# Like 'x = 5', 'x' will be assigned to the output of this block.\n\n`, continueOnFailure: false, } as const;