Skip to content

Commit 4ba735c

Browse files
committed
feat(studio): enable blocks panel by default
Flip the fallback from false to true so the blocks panel is on for everyone out of the box. Users can still disable it via VITE_STUDIO_ENABLE_BLOCKS_PANEL=false if needed.
1 parent b1ea5d6 commit 4ba735c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/studio/src/components/editor/manualEditingAvailability.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const STUDIO_MOTION_PANEL_ENABLED = resolveStudioBooleanEnvFlag(
6262
export const STUDIO_BLOCKS_PANEL_ENABLED = resolveStudioBooleanEnvFlag(
6363
env,
6464
["VITE_STUDIO_ENABLE_BLOCKS_PANEL", "VITE_STUDIO_BLOCKS_PANEL_ENABLED"],
65-
false,
65+
true,
6666
);
6767

6868
export const STUDIO_PREVIEW_SELECTION_ENABLED = STUDIO_INSPECTOR_PANELS_ENABLED;

0 commit comments

Comments
 (0)