From 7f1c645c84432596076655d40b1e2222b4b75dd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel?= Date: Fri, 29 May 2026 23:40:06 -0400 Subject: [PATCH] feat(studio): enable GSAP design panel by default Flip the STUDIO_GSAP_PANEL_ENABLED fallback from false to true. The panel has been behind a feature flag since initial development; after the bug bash (hf#1126) and soft-reload optimization (hf#1129) it is stable enough for general use. Users can still disable it via VITE_STUDIO_ENABLE_GSAP_PANEL=false if needed. --- .../studio/src/components/editor/manualEditingAvailability.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/studio/src/components/editor/manualEditingAvailability.ts b/packages/studio/src/components/editor/manualEditingAvailability.ts index 6845956a6..1a0f5a66b 100644 --- a/packages/studio/src/components/editor/manualEditingAvailability.ts +++ b/packages/studio/src/components/editor/manualEditingAvailability.ts @@ -68,7 +68,7 @@ export const STUDIO_BLOCKS_PANEL_ENABLED = resolveStudioBooleanEnvFlag( export const STUDIO_GSAP_PANEL_ENABLED = resolveStudioBooleanEnvFlag( env, ["VITE_STUDIO_ENABLE_GSAP_PANEL", "VITE_STUDIO_GSAP_PANEL_ENABLED"], - false, + true, ); export const STUDIO_PREVIEW_SELECTION_ENABLED = STUDIO_INSPECTOR_PANELS_ENABLED;