Skip to content

Commit

Permalink
Set disableModulePatternComponents flag to __NEXT_MAJOR__ for RN OSS
Browse files Browse the repository at this point in the history
I missed this in #28579, for the next major of RN OSS we should also
enable this flag.
  • Loading branch information
kassens committed Mar 20, 2024
1 parent a493901 commit d3bf58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/forks/ReactFeatureFlags.native-oss.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const enableSuspenseCallback = false;
export const disableLegacyContext = true;
export const enableTrustedTypesIntegration = false;
export const disableTextareaChildren = false;
export const disableModulePatternComponents = false;
export const disableModulePatternComponents = __NEXT_MAJOR__;
export const enableSuspenseAvoidThisFallback = false;
export const enableSuspenseAvoidThisFallbackFizz = false;
export const enableCPUSuspense = false;
Expand Down

0 comments on commit d3bf58a

Please sign in to comment.