diff --git a/skyvern-frontend/src/routes/workflows/editor/Workspace.tsx b/skyvern-frontend/src/routes/workflows/editor/Workspace.tsx index 90338b5f..27b7f2ae 100644 --- a/skyvern-frontend/src/routes/workflows/editor/Workspace.tsx +++ b/skyvern-frontend/src/routes/workflows/editor/Workspace.tsx @@ -139,7 +139,7 @@ function Workspace({ const enableDebugBrowser = useMemo(() => { return ( - showBrowser || (activeDebugSession?.vnc_streaming_supported ?? false) + showBrowser && (activeDebugSession?.vnc_streaming_supported ?? false) ); }, [showBrowser, activeDebugSession?.vnc_streaming_supported]);