File tree 3 files changed +1
-3
lines changed 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';
21
21
// update the test configuration.
22
22
23
23
export const alwaysThrottleRetries = __VARIANT__ ;
24
- export const disableModulePatternComponents = __VARIANT__ ;
25
24
export const enableDeferRootSchedulingToMicrotask = __VARIANT__ ;
26
25
export const enableUnifiedSyncLane = __VARIANT__ ;
27
26
export const enableUseRefAccessWarning = __VARIANT__ ;
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import * as dynamicFlags from 'ReactNativeInternalFeatureFlags';
19
19
// the exports object every time a flag is read.
20
20
export const {
21
21
alwaysThrottleRetries,
22
- disableModulePatternComponents,
23
22
enableDeferRootSchedulingToMicrotask,
24
23
enableUnifiedSyncLane,
25
24
enableUseRefAccessWarning,
@@ -28,6 +27,7 @@ export const {
28
27
} = dynamicFlags ;
29
28
30
29
// The rest of the flags are static for better dead code elimination.
30
+ export const disableModulePatternComponents = true ;
31
31
export const enableDebugTracing = false ;
32
32
export const enableSchedulingProfiler = __PROFILE__ ;
33
33
export const enableProfilerTimer = __PROFILE__ ;
Original file line number Diff line number Diff line change 9
9
10
10
declare module 'ReactNativeInternalFeatureFlags' {
11
11
declare export var alwaysThrottleRetries : boolean ;
12
- declare export var disableModulePatternComponents : boolean ;
13
12
declare export var enableDeferRootSchedulingToMicrotask : boolean ;
14
13
declare export var enableUnifiedSyncLane : boolean ;
15
14
declare export var enableUseRefAccessWarning : boolean ;
You can’t perform that action at this time.
0 commit comments