@@ -950,10 +950,8 @@ __DEV__ &&
950
950
}
951
951
}
952
952
function getHighestPriorityLanes(lanes) {
953
- if (enableUnifiedSyncLane) {
954
- var pendingSyncLanes = lanes & SyncUpdateLanes;
955
- if (0 !== pendingSyncLanes) return pendingSyncLanes;
956
- }
953
+ var pendingSyncLanes = lanes & SyncUpdateLanes;
954
+ if (0 !== pendingSyncLanes) return pendingSyncLanes;
957
955
switch (lanes & -lanes) {
958
956
case SyncHydrationLane:
959
957
return SyncHydrationLane;
@@ -9338,10 +9336,7 @@ __DEV__ &&
9338
9336
JSCompiler_object_inline_digest_2433 = workInProgressRoot;
9339
9337
if (null !== JSCompiler_object_inline_digest_2433) {
9340
9338
JSCompiler_object_inline_stack_2434 = renderLanes & -renderLanes;
9341
- if (
9342
- enableUnifiedSyncLane &&
9343
- 0 !== (JSCompiler_object_inline_stack_2434 & SyncUpdateLanes)
9344
- )
9339
+ if (0 !== (JSCompiler_object_inline_stack_2434 & SyncUpdateLanes))
9345
9340
JSCompiler_object_inline_stack_2434 = SyncHydrationLane;
9346
9341
else
9347
9342
switch (JSCompiler_object_inline_stack_2434) {
@@ -23798,7 +23793,6 @@ __DEV__ &&
23798
23793
enableDebugTracing = dynamicFeatureFlags.enableDebugTracing,
23799
23794
enableLazyContextPropagation =
23800
23795
dynamicFeatureFlags.enableLazyContextPropagation,
23801
- enableUnifiedSyncLane = dynamicFeatureFlags.enableUnifiedSyncLane,
23802
23796
enableRetryLaneExpiration = dynamicFeatureFlags.enableRetryLaneExpiration,
23803
23797
enableTransitionTracing = dynamicFeatureFlags.enableTransitionTracing,
23804
23798
enableDeferRootSchedulingToMicrotask =
@@ -23893,9 +23887,7 @@ __DEV__ &&
23893
23887
InputContinuousLane = 8,
23894
23888
DefaultHydrationLane = 16,
23895
23889
DefaultLane = 32,
23896
- SyncUpdateLanes = enableUnifiedSyncLane
23897
- ? SyncLane | InputContinuousLane | DefaultLane
23898
- : SyncLane,
23890
+ SyncUpdateLanes = SyncLane | InputContinuousLane | DefaultLane,
23899
23891
TransitionHydrationLane = 64,
23900
23892
TransitionLanes = 4194176,
23901
23893
RetryLanes = 62914560,
@@ -27373,11 +27365,11 @@ __DEV__ &&
27373
27365
: flushSyncErrorInBuildsThatSupportLegacyMode;
27374
27366
(function () {
27375
27367
var isomorphicReactPackageVersion = React.version;
27376
- if ("19.0.0-www-classic-0b724e9e9c-20240621 " !== isomorphicReactPackageVersion)
27368
+ if ("19.0.0-www-classic-c21bcd627b-20240624 " !== isomorphicReactPackageVersion)
27377
27369
throw Error(
27378
27370
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
27379
27371
(isomorphicReactPackageVersion +
27380
- "\n - react-dom: 19.0.0-www-classic-0b724e9e9c-20240621 \nLearn more: https://react.dev/warnings/version-mismatch")
27372
+ "\n - react-dom: 19.0.0-www-classic-c21bcd627b-20240624 \nLearn more: https://react.dev/warnings/version-mismatch")
27381
27373
);
27382
27374
})();
27383
27375
("function" === typeof Map &&
@@ -27443,12 +27435,12 @@ __DEV__ &&
27443
27435
scheduleRoot: scheduleRoot,
27444
27436
setRefreshHandler: setRefreshHandler,
27445
27437
getCurrentFiber: getCurrentFiberForDevTools,
27446
- reconcilerVersion: "19.0.0-www-classic-0b724e9e9c-20240621 "
27438
+ reconcilerVersion: "19.0.0-www-classic-c21bcd627b-20240624 "
27447
27439
});
27448
27440
})({
27449
27441
findFiberByHostInstance: getClosestInstanceFromNode,
27450
27442
bundleType: 1,
27451
- version: "19.0.0-www-classic-0b724e9e9c-20240621 ",
27443
+ version: "19.0.0-www-classic-c21bcd627b-20240624 ",
27452
27444
rendererPackageName: "react-dom"
27453
27445
}) &&
27454
27446
canUseDOM &&
@@ -28091,7 +28083,7 @@ __DEV__ &&
28091
28083
exports.useFormStatus = function () {
28092
28084
return resolveDispatcher().useHostTransitionStatus();
28093
28085
};
28094
- exports.version = "19.0.0-www-classic-0b724e9e9c-20240621 ";
28086
+ exports.version = "19.0.0-www-classic-c21bcd627b-20240624 ";
28095
28087
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
28096
28088
"function" ===
28097
28089
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
0 commit comments