launch show & tell for OSS (#4333)

This commit is contained in:
Celal Zamanoglu
2025-12-19 00:49:15 +03:00
committed by GitHub
parent 3de1b27488
commit e84f628cf2

View File

@@ -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}</>;
}