From c868deca2295f07876d410107272ddbb35b5cea9 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 27 Mar 2025 18:34:08 -0700 Subject: [PATCH] Add opt-in message to CodeBlock (#2025) --- .../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 261a5532..7bbca650 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\n`, + 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`, continueOnFailure: false, } as const;