From e84f628cf2ede0a6eb6f4eaa3209b5784d628914 Mon Sep 17 00:00:00 2001 From: Celal Zamanoglu <95054566+celalzamanoglu@users.noreply.github.com> Date: Fri, 19 Dec 2025 00:49:15 +0300 Subject: [PATCH] launch show & tell for OSS (#4333) --- .../src/routes/workflows/editor/WorkflowAddMenu.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/editor/WorkflowAddMenu.tsx b/skyvern-frontend/src/routes/workflows/editor/WorkflowAddMenu.tsx index 60c838dc..529213c1 100644 --- a/skyvern-frontend/src/routes/workflows/editor/WorkflowAddMenu.tsx +++ b/skyvern-frontend/src/routes/workflows/editor/WorkflowAddMenu.tsx @@ -2,7 +2,6 @@ import { SquareIcon, PlusIcon } from "@radix-ui/react-icons"; import { ReactNode } from "react"; import { RadialMenu } from "@/components/RadialMenu"; -import { useIsSkyvernUser } from "@/hooks/useIsSkyvernUser"; import { useDebugStore } from "@/store/useDebugStore"; import { useRecordingStore } from "@/store/useRecordingStore"; import { useSettingsStore } from "@/store/SettingsStore"; @@ -33,13 +32,8 @@ function WorkflowAddMenu({ const debugStore = useDebugStore(); const recordingStore = useRecordingStore(); const settingsStore = useSettingsStore(); - const isSkyvernUser = useIsSkyvernUser(); - if ( - !isSkyvernUser || - !debugStore.isDebugMode || - !settingsStore.isUsingABrowser - ) { + if (!debugStore.isDebugMode || !settingsStore.isUsingABrowser) { return <>{children}; }