From 9fe8dcbb00cd1ca42dacaf363bf62ffb4565adc5 Mon Sep 17 00:00:00 2001 From: Kerem Yilmaz Date: Fri, 4 Oct 2024 22:44:38 -0700 Subject: [PATCH] Remove code block from node list (#913) --- .../editor/panels/WorkflowNodeLibraryPanel.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/editor/panels/WorkflowNodeLibraryPanel.tsx b/skyvern-frontend/src/routes/workflows/editor/panels/WorkflowNodeLibraryPanel.tsx index b96327c2..70f4e737 100644 --- a/skyvern-frontend/src/routes/workflows/editor/panels/WorkflowNodeLibraryPanel.tsx +++ b/skyvern-frontend/src/routes/workflows/editor/panels/WorkflowNodeLibraryPanel.tsx @@ -1,6 +1,5 @@ import { useWorkflowPanelStore } from "@/store/WorkflowPanelStore"; import { - CodeIcon, Cross2Icon, CursorTextIcon, DownloadIcon, @@ -44,12 +43,13 @@ const nodeLibraryItems: Array<{ title: "Send Email Block", description: "Sends an email", }, - { - nodeType: "codeBlock", - icon: , - title: "Code Block", - description: "Executes Python code", - }, + // temporarily removed + // { + // nodeType: "codeBlock", + // icon: , + // title: "Code Block", + // description: "Executes Python code", + // }, { nodeType: "fileParser", icon: ,