Skip to content

Commit 449e20d

Browse files
committed
Set enableUnifiedSyncLane to true
1 parent ce2bc58 commit 449e20d

5 files changed

+5
-5
lines changed

packages/shared/ReactFeatureFlags.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export const enableUseRefAccessWarning = false;
151151
// Enables time slicing for updates that aren't wrapped in startTransition.
152152
export const forceConcurrentByDefaultForTesting = false;
153153

154-
export const enableUnifiedSyncLane = __EXPERIMENTAL__;
154+
export const enableUnifiedSyncLane = true;
155155

156156
// Adds an opt-in to time slicing for updates that aren't wrapped in startTransition.
157157
export const allowConcurrentByDefault = false;

packages/shared/forks/ReactFeatureFlags.native-fb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export const disableSchedulerTimeoutInWorkLoop = false;
7272
export const enableLazyContextPropagation = false;
7373
export const enableLegacyHidden = true;
7474
export const forceConcurrentByDefaultForTesting = false;
75-
export const enableUnifiedSyncLane = false;
75+
export const enableUnifiedSyncLane = true;
7676
export const allowConcurrentByDefault = true;
7777
export const enableCustomElementPropertySupport = false;
7878

packages/shared/forks/ReactFeatureFlags.native-oss.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const disableSchedulerTimeoutInWorkLoop = false;
5757
export const enableLazyContextPropagation = false;
5858
export const enableLegacyHidden = false;
5959
export const forceConcurrentByDefaultForTesting = false;
60-
export const enableUnifiedSyncLane = false;
60+
export const enableUnifiedSyncLane = true;
6161
export const allowConcurrentByDefault = false;
6262
export const enableCustomElementPropertySupport = false;
6363

packages/shared/forks/ReactFeatureFlags.test-renderer.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const disableSchedulerTimeoutInWorkLoop = false;
5656
export const enableLazyContextPropagation = false;
5757
export const enableLegacyHidden = false;
5858
export const forceConcurrentByDefaultForTesting = false;
59-
export const enableUnifiedSyncLane = false;
59+
export const enableUnifiedSyncLane = true;
6060
export const allowConcurrentByDefault = true;
6161

6262
export const consoleManagedByDevToolsDuringStrictMode = false;

packages/shared/forks/ReactFeatureFlags.test-renderer.www.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const disableSchedulerTimeoutInWorkLoop = false;
5757
export const enableLazyContextPropagation = false;
5858
export const enableLegacyHidden = false;
5959
export const forceConcurrentByDefaultForTesting = false;
60-
export const enableUnifiedSyncLane = false;
60+
export const enableUnifiedSyncLane = true;
6161
export const allowConcurrentByDefault = true;
6262
export const enableCustomElementPropertySupport = false;
6363

0 commit comments

Comments
 (0)