@@ -940,10 +940,8 @@ __DEV__ &&
940940 }
941941 }
942942 function getHighestPriorityLanes(lanes) {
943- if (enableUnifiedSyncLane) {
944- var pendingSyncLanes = lanes & SyncUpdateLanes;
945- if (0 !== pendingSyncLanes) return pendingSyncLanes;
946- }
943+ var pendingSyncLanes = lanes & SyncUpdateLanes;
944+ if (0 !== pendingSyncLanes) return pendingSyncLanes;
947945 switch (lanes & -lanes) {
948946 case SyncHydrationLane:
949947 return SyncHydrationLane;
@@ -7323,7 +7321,7 @@ __DEV__ &&
73237321 JSCompiler_temp = workInProgressRoot;
73247322 if (null !== JSCompiler_temp) {
73257323 nextProps = renderLanes & -renderLanes;
7326- if (enableUnifiedSyncLane && 0 !== (nextProps & SyncUpdateLanes))
7324+ if (0 !== (nextProps & SyncUpdateLanes))
73277325 nextProps = SyncHydrationLane;
73287326 else
73297327 switch (nextProps) {
@@ -14857,7 +14855,6 @@ __DEV__ &&
1485714855 enableDebugTracing = dynamicFeatureFlags.enableDebugTracing,
1485814856 enableLazyContextPropagation =
1485914857 dynamicFeatureFlags.enableLazyContextPropagation,
14860- enableUnifiedSyncLane = dynamicFeatureFlags.enableUnifiedSyncLane,
1486114858 enableRetryLaneExpiration = dynamicFeatureFlags.enableRetryLaneExpiration,
1486214859 enableTransitionTracing = dynamicFeatureFlags.enableTransitionTracing,
1486314860 enableDeferRootSchedulingToMicrotask =
@@ -14962,9 +14959,7 @@ __DEV__ &&
1496214959 InputContinuousLane = 8,
1496314960 DefaultHydrationLane = 16,
1496414961 DefaultLane = 32,
14965- SyncUpdateLanes = enableUnifiedSyncLane
14966- ? SyncLane | InputContinuousLane | DefaultLane
14967- : SyncLane,
14962+ SyncUpdateLanes = SyncLane | InputContinuousLane | DefaultLane,
1496814963 TransitionHydrationLane = 64,
1496914964 TransitionLanes = 4194176,
1497014965 RetryLanes = 62914560,
@@ -16934,14 +16929,14 @@ __DEV__ &&
1693416929 scheduleRoot: scheduleRoot,
1693516930 setRefreshHandler: setRefreshHandler,
1693616931 getCurrentFiber: getCurrentFiberForDevTools,
16937- reconcilerVersion: "19.0.0-www-classic-0b724e9e9c-20240621 "
16932+ reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624 "
1693816933 });
1693916934 })({
1694016935 findFiberByHostInstance: function () {
1694116936 return null;
1694216937 },
1694316938 bundleType: 1,
16944- version: "19.0.0-www-classic-0b724e9e9c-20240621 ",
16939+ version: "19.0.0-www-classic-c21bcd627b-20240624 ",
1694516940 rendererPackageName: "react-art"
1694616941 });
1694716942 var ClippingRectangle = TYPES.CLIPPING_RECTANGLE,
0 commit comments