File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import typeof * as DynamicFlagsType from 'ReactNativeInternalFeatureFlags';
2121// update the test configuration.
2222
2323export const alwaysThrottleRetries = __VARIANT__ ;
24- export const disableModulePatternComponents = __VARIANT__ ;
2524export const enableDeferRootSchedulingToMicrotask = __VARIANT__ ;
2625export const enableUnifiedSyncLane = __VARIANT__ ;
2726export const enableUseRefAccessWarning = __VARIANT__ ;
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import * as dynamicFlags from 'ReactNativeInternalFeatureFlags';
1919// the exports object every time a flag is read.
2020export const {
2121 alwaysThrottleRetries,
22- disableModulePatternComponents,
2322 enableDeferRootSchedulingToMicrotask,
2423 enableUnifiedSyncLane,
2524 enableUseRefAccessWarning,
@@ -28,6 +27,7 @@ export const {
2827} = dynamicFlags ;
2928
3029// The rest of the flags are static for better dead code elimination.
30+ export const disableModulePatternComponents = true ;
3131export const enableDebugTracing = false ;
3232export const enableSchedulingProfiler = __PROFILE__ ;
3333export const enableProfilerTimer = __PROFILE__ ;
Original file line number Diff line number Diff line change 99
1010declare module 'ReactNativeInternalFeatureFlags' {
1111 declare export var alwaysThrottleRetries : boolean ;
12- declare export var disableModulePatternComponents : boolean ;
1312 declare export var enableDeferRootSchedulingToMicrotask : boolean ;
1413 declare export var enableUnifiedSyncLane : boolean ;
1514 declare export var enableUseRefAccessWarning : boolean ;
You can’t perform that action at this time.
0 commit comments