diff --git a/web/src/beta/features/Editor/Visualizer/hooks.ts b/web/src/beta/features/Editor/Visualizer/hooks.ts index ae2fb365e..8260f4f28 100644 --- a/web/src/beta/features/Editor/Visualizer/hooks.ts +++ b/web/src/beta/features/Editor/Visualizer/hooks.ts @@ -279,7 +279,6 @@ export default ({ selectedWidgetArea, widgetAlignEditorActivated, engineMeta, - useExperimentalSandbox: false, // TODO: test and use new sandbox in beta solely, removing old way too. isVisualizerReady, // Not being used (as of 2024/04) zoomedLayerId, installableInfoboxBlocks, diff --git a/web/src/beta/features/Editor/Visualizer/index.tsx b/web/src/beta/features/Editor/Visualizer/index.tsx index a8f6988f5..c2716af07 100644 --- a/web/src/beta/features/Editor/Visualizer/index.tsx +++ b/web/src/beta/features/Editor/Visualizer/index.tsx @@ -56,7 +56,6 @@ const EditorVisualizer: React.FC = ({ selectedWidgetArea, widgetAlignEditorActivated, engineMeta, - useExperimentalSandbox, zoomedLayerId, installableInfoboxBlocks, handleLayerSelect, @@ -92,7 +91,6 @@ const EditorVisualizer: React.FC = ({ pluginProperty={pluginProperty} // editor zoomedLayerId={zoomedLayerId} - useExperimentalSandbox={useExperimentalSandbox} visualizerRef={visualizerRef} currentCamera={currentCamera} interactionMode={interactionMode} diff --git a/web/src/beta/features/Visualizer/index.tsx b/web/src/beta/features/Visualizer/index.tsx index 2ff6180d9..5f78677e5 100644 --- a/web/src/beta/features/Visualizer/index.tsx +++ b/web/src/beta/features/Visualizer/index.tsx @@ -140,7 +140,7 @@ const Visualizer: FC = ({ pluginProperty, story, zoomedLayerId, - useExperimentalSandbox, + useExperimentalSandbox = true, visualizerRef, currentCamera, interactionMode,