File tree 3 files changed +3
-1
lines changed 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ export const enableDeferRootSchedulingToMicrotask = __VARIANT__;
26
26
export const enableUseRefAccessWarning = __VARIANT__ ;
27
27
export const passChildrenWhenCloningPersistedNodes = __VARIANT__ ;
28
28
export const useMicrotasksForSchedulingInFabric = __VARIANT__ ;
29
+ export const enableUnifiedSyncLane = __VARIANT__ ;
29
30
30
31
// Flow magic to verify the exports of this file match the original version.
31
32
( ( ( ( null : any ) : ExportsType ) : DynamicFlagsType ) : ExportsType ) ;
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export const {
24
24
enableUseRefAccessWarning,
25
25
passChildrenWhenCloningPersistedNodes,
26
26
useMicrotasksForSchedulingInFabric,
27
+ enableUnifiedSyncLane,
27
28
} = dynamicFlags ;
28
29
29
30
// The rest of the flags are static for better dead code elimination.
@@ -51,7 +52,6 @@ export const disableInputAttributeSyncing = false;
51
52
export const disableIEWorkarounds = true ;
52
53
export const replayFailedUnitOfWorkWithInvokeGuardedCallback = __DEV__ ;
53
54
export const enableScopeAPI = false ;
54
- export const enableUnifiedSyncLane = true ;
55
55
export const enableCreateEventHandleAPI = false ;
56
56
export const enableSuspenseCallback = false ;
57
57
export const disableLegacyContext = false ;
Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ declare module 'ReactNativeInternalFeatureFlags' {
14
14
declare export var enableUseRefAccessWarning : boolean ;
15
15
declare export var passChildrenWhenCloningPersistedNodes : boolean ;
16
16
declare export var useMicrotasksForSchedulingInFabric : boolean ;
17
+ declare export var enableUnifiedSyncLane : boolean ;
17
18
}
You can’t perform that action at this time.
0 commit comments