From defc5a70ab8d74a2da386dda1750d303a830bd8d Mon Sep 17 00:00:00 2001 From: RheeseyB <1044774+Rheeseyb@users.noreply.github.com> Date: Tue, 8 Oct 2024 12:14:56 +0100 Subject: [PATCH] Disable the two parsing feature flags by default for now (#6493) **Problem:** The two new parsing features are causing a couple of unexpected editor breaking bugs **Fix:** Disable the feature flags by default until we've solved the cause of the issues. **Manual Tests:** I hereby swear that: - [x] I opened a hydrogen project and it loaded - [x] I could navigate to various routes in Play mode --- editor/src/utils/feature-switches.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/src/utils/feature-switches.ts b/editor/src/utils/feature-switches.ts index 7ea53ffa2188..4f996e50e1df 100644 --- a/editor/src/utils/feature-switches.ts +++ b/editor/src/utils/feature-switches.ts @@ -62,11 +62,11 @@ let FeatureSwitches: { [feature in FeatureName]: boolean } = { 'Canvas Strategies Debug Panel': false, 'Project Thumbnail Generation': false, 'Debug - Print UIDs': false, - 'Parallel Parsing': !IS_TEST_ENVIRONMENT, + 'Parallel Parsing': false, 'Debug - Log Parse Timings': false, Tailwind: false, 'Condensed Navigator Entries': !IS_TEST_ENVIRONMENT, - 'Use Parsing Cache': !IS_TEST_ENVIRONMENT, + 'Use Parsing Cache': false, 'Canvas Fast Selection Hack': true, 'Show Debug Features': false, }