Skip to content

Commit

Permalink
Disable the two parsing feature flags by default for now (#6493)
Browse files Browse the repository at this point in the history
**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
  • Loading branch information
Rheeseyb authored Oct 8, 2024
1 parent ddc54cb commit defc5a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/src/utils/feature-switches.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit defc5a7

Please sign in to comment.