[Fiber] Don't throw away the Error object retaining the owner stack (#33976)

We currently throw away the Error once we've used to the owner stack of
a Fiber once. This maybe helps a bit with memory and redoing it but we
really don't expect most Fibers to hit this at all. It's not very hot.

If we throw away the Error, then we can't use native debugger protocols
to inspect the native stack. Instead, we'd have to maintain a url to
resource map indefinitely like what Chrome DevTools does to map a url to
a resource. Technically it's not even technically correct since the file
path might not be reversible and could in theory conflict.

DiffTrain build for [4f34cc4a2e](https://github.com/facebook/react/commit/4f34cc4a2e1198493375867d1876509ae9771aee)
This commit is contained in:
sebmarkbage
2025-07-24 10:44:23 -07:00
parent e5b30133c7
commit 49e4c080e4
34 changed files with 554 additions and 564 deletions
+1 -1
View File
@@ -1 +1 @@
f6fb1a07a5fda2aa436f6ddf9a31025945cd67b3
4f34cc4a2e1198493375867d1876509ae9771aee
+1 -1
View File
@@ -1 +1 @@
f6fb1a07a5fda2aa436f6ddf9a31025945cd67b3
4f34cc4a2e1198493375867d1876509ae9771aee
+1 -1
View File
@@ -1434,7 +1434,7 @@ __DEV__ &&
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+1 -1
View File
@@ -1434,7 +1434,7 @@ __DEV__ &&
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+1 -1
View File
@@ -610,4 +610,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
+1 -1
View File
@@ -610,4 +610,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
@@ -614,7 +614,7 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -614,7 +614,7 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -2640,11 +2640,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -19300,10 +19299,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-f6fb1a07-20250723",
version: "19.2.0-www-classic-4f34cc4a-20250724",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19337,7 +19336,7 @@ __DEV__ &&
exports.Shape = Shape;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+7 -8
View File
@@ -2546,11 +2546,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -19071,10 +19070,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-f6fb1a07-20250723",
version: "19.2.0-www-modern-4f34cc4a-20250724",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19108,7 +19107,7 @@ __DEV__ &&
exports.Shape = Shape;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -11305,10 +11305,10 @@ var slice = Array.prototype.slice,
})(React.Component);
var internals$jscomp$inline_1610 = {
bundleType: 0,
version: "19.2.0-www-classic-f6fb1a07-20250723",
version: "19.2.0-www-classic-4f34cc4a-20250724",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1611 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11334,4 +11334,4 @@ exports.RadialGradient = RadialGradient;
exports.Shape = TYPES.SHAPE;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
@@ -11017,10 +11017,10 @@ var slice = Array.prototype.slice,
})(React.Component);
var internals$jscomp$inline_1583 = {
bundleType: 0,
version: "19.2.0-www-modern-f6fb1a07-20250723",
version: "19.2.0-www-modern-4f34cc4a-20250724",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1584 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11046,4 +11046,4 @@ exports.RadialGradient = RadialGradient;
exports.Shape = TYPES.SHAPE;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
+115 -116
View File
@@ -1479,11 +1479,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -10435,24 +10434,24 @@ __DEV__ &&
return current;
}
function updateSuspenseComponent(current, workInProgress, renderLanes) {
var JSCompiler_object_inline_digest_3011;
var JSCompiler_object_inline_stack_3012 = workInProgress.pendingProps;
var JSCompiler_object_inline_digest_3012;
var JSCompiler_object_inline_stack_3013 = workInProgress.pendingProps;
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
var JSCompiler_object_inline_message_3010 = !1;
var JSCompiler_object_inline_message_3011 = !1;
var didSuspend = 0 !== (workInProgress.flags & 128);
(JSCompiler_object_inline_digest_3011 = didSuspend) ||
(JSCompiler_object_inline_digest_3011 =
(JSCompiler_object_inline_digest_3012 = didSuspend) ||
(JSCompiler_object_inline_digest_3012 =
null !== current && null === current.memoizedState
? !1
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
JSCompiler_object_inline_digest_3011 &&
((JSCompiler_object_inline_message_3010 = !0),
JSCompiler_object_inline_digest_3012 &&
((JSCompiler_object_inline_message_3011 = !0),
(workInProgress.flags &= -129));
JSCompiler_object_inline_digest_3011 = 0 !== (workInProgress.flags & 32);
JSCompiler_object_inline_digest_3012 = 0 !== (workInProgress.flags & 32);
workInProgress.flags &= -33;
if (null === current) {
if (isHydrating) {
JSCompiler_object_inline_message_3010
JSCompiler_object_inline_message_3011
? pushPrimaryTreeSuspenseHandler(workInProgress)
: reuseSuspenseHandlerOnStack(workInProgress);
(current = nextHydratableInstance)
@@ -10465,18 +10464,18 @@ __DEV__ &&
? renderLanes
: null),
null !== renderLanes &&
((JSCompiler_object_inline_digest_3011 = {
((JSCompiler_object_inline_digest_3012 = {
dehydrated: renderLanes,
treeContext: getSuspendedTreeContext(),
retryLane: 536870912,
hydrationErrors: null
}),
(workInProgress.memoizedState =
JSCompiler_object_inline_digest_3011),
(JSCompiler_object_inline_digest_3011 =
JSCompiler_object_inline_digest_3012),
(JSCompiler_object_inline_digest_3012 =
createFiberFromDehydratedFragment(renderLanes)),
(JSCompiler_object_inline_digest_3011.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3011),
(JSCompiler_object_inline_digest_3012.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3012),
(hydrationParentFiber = workInProgress),
(nextHydratableInstance = null)))
: (renderLanes = null);
@@ -10490,12 +10489,12 @@ __DEV__ &&
: (workInProgress.lanes = 536870912);
return null;
}
var nextPrimaryChildren = JSCompiler_object_inline_stack_3012.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3012.fallback;
if (JSCompiler_object_inline_message_3010)
var nextPrimaryChildren = JSCompiler_object_inline_stack_3013.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3013.fallback;
if (JSCompiler_object_inline_message_3011)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3012 =
(JSCompiler_object_inline_stack_3013 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10507,7 +10506,7 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3011,
JSCompiler_object_inline_digest_3012,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10528,15 +10527,15 @@ __DEV__ &&
})
: ((renderLanes.transitions = workInProgress),
(renderLanes.markerInstances = current)))),
JSCompiler_object_inline_stack_3012
JSCompiler_object_inline_stack_3013
);
if (
"number" ===
typeof JSCompiler_object_inline_stack_3012.unstable_expectedLoadTime
typeof JSCompiler_object_inline_stack_3013.unstable_expectedLoadTime
)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3012 =
(JSCompiler_object_inline_stack_3013 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10548,12 +10547,12 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3011,
JSCompiler_object_inline_digest_3012,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
(workInProgress.lanes = 4194304),
JSCompiler_object_inline_stack_3012
JSCompiler_object_inline_stack_3013
);
pushPrimaryTreeSuspenseHandler(workInProgress);
return mountSuspensePrimaryChildren(
@@ -10563,8 +10562,8 @@ __DEV__ &&
}
var prevState = current.memoizedState;
if (null !== prevState) {
var JSCompiler_object_inline_componentStack_3013 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3013) {
var JSCompiler_object_inline_componentStack_3014 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3014) {
if (didSuspend)
workInProgress.flags & 256
? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10581,13 +10580,13 @@ __DEV__ &&
(workInProgress = null))
: (reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren =
JSCompiler_object_inline_stack_3012.fallback),
JSCompiler_object_inline_stack_3013.fallback),
(nextFallbackChildren = workInProgress.mode),
(JSCompiler_object_inline_stack_3012 =
(JSCompiler_object_inline_stack_3013 =
mountWorkInProgressOffscreenFiber(
{
mode: "visible",
children: JSCompiler_object_inline_stack_3012.children
children: JSCompiler_object_inline_stack_3013.children
},
nextFallbackChildren
)),
@@ -10598,24 +10597,24 @@ __DEV__ &&
null
)),
(nextPrimaryChildren.flags |= 2),
(JSCompiler_object_inline_stack_3012.return = workInProgress),
(JSCompiler_object_inline_stack_3013.return = workInProgress),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3012.sibling =
(JSCompiler_object_inline_stack_3013.sibling =
nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3012),
(workInProgress.child = JSCompiler_object_inline_stack_3013),
reconcileChildFibers(
workInProgress,
current.child,
null,
renderLanes
),
(JSCompiler_object_inline_stack_3012 = workInProgress.child),
(JSCompiler_object_inline_stack_3012.memoizedState =
(JSCompiler_object_inline_stack_3013 = workInProgress.child),
(JSCompiler_object_inline_stack_3013.memoizedState =
mountSuspenseOffscreenState(renderLanes)),
(JSCompiler_object_inline_stack_3012.childLanes =
(JSCompiler_object_inline_stack_3013.childLanes =
getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3011,
JSCompiler_object_inline_digest_3012,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10624,45 +10623,45 @@ __DEV__ &&
(pushPrimaryTreeSuspenseHandler(workInProgress),
warnIfHydrating(),
isSuspenseInstanceFallback(
JSCompiler_object_inline_componentStack_3013
JSCompiler_object_inline_componentStack_3014
))
) {
JSCompiler_object_inline_digest_3011 =
JSCompiler_object_inline_componentStack_3013.nextSibling &&
JSCompiler_object_inline_componentStack_3013.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3011) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3011.dgst;
var message = JSCompiler_object_inline_digest_3011.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3011.stck;
var componentStack = JSCompiler_object_inline_digest_3011.cstck;
JSCompiler_object_inline_digest_3012 =
JSCompiler_object_inline_componentStack_3014.nextSibling &&
JSCompiler_object_inline_componentStack_3014.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3012) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3012.dgst;
var message = JSCompiler_object_inline_digest_3012.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3012.stck;
var componentStack = JSCompiler_object_inline_digest_3012.cstck;
}
JSCompiler_object_inline_message_3010 = message;
JSCompiler_object_inline_digest_3011 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3012 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3013 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3010;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3013;
JSCompiler_object_inline_message_3011 = message;
JSCompiler_object_inline_digest_3012 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3013 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3014 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3011;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3014;
nextPrimaryChildren = nextPrimaryChildren
? Error(nextPrimaryChildren)
: Error(
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
);
nextPrimaryChildren.stack =
JSCompiler_object_inline_stack_3012 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3011;
JSCompiler_object_inline_digest_3011 =
JSCompiler_object_inline_stack_3013 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3012;
JSCompiler_object_inline_digest_3012 =
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
JSCompiler_object_inline_stack_3012 = {
JSCompiler_object_inline_stack_3013 = {
value: nextPrimaryChildren,
source: null,
stack: JSCompiler_object_inline_digest_3011
stack: JSCompiler_object_inline_digest_3012
};
"string" === typeof JSCompiler_object_inline_digest_3011 &&
"string" === typeof JSCompiler_object_inline_digest_3012 &&
CapturedStacks.set(
nextPrimaryChildren,
JSCompiler_object_inline_stack_3012
JSCompiler_object_inline_stack_3013
);
queueHydrationError(JSCompiler_object_inline_stack_3012);
queueHydrationError(JSCompiler_object_inline_stack_3013);
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
workInProgress,
@@ -10676,35 +10675,35 @@ __DEV__ &&
renderLanes,
!1
),
(JSCompiler_object_inline_digest_3011 =
(JSCompiler_object_inline_digest_3012 =
0 !== (renderLanes & current.childLanes)),
didReceiveUpdate || JSCompiler_object_inline_digest_3011)
didReceiveUpdate || JSCompiler_object_inline_digest_3012)
) {
JSCompiler_object_inline_digest_3011 = workInProgressRoot;
JSCompiler_object_inline_digest_3012 = workInProgressRoot;
if (
null !== JSCompiler_object_inline_digest_3011 &&
((JSCompiler_object_inline_stack_3012 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3011,
null !== JSCompiler_object_inline_digest_3012 &&
((JSCompiler_object_inline_stack_3013 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3012,
renderLanes
)),
0 !== JSCompiler_object_inline_stack_3012 &&
JSCompiler_object_inline_stack_3012 !== prevState.retryLane)
0 !== JSCompiler_object_inline_stack_3013 &&
JSCompiler_object_inline_stack_3013 !== prevState.retryLane)
)
throw (
((prevState.retryLane = JSCompiler_object_inline_stack_3012),
((prevState.retryLane = JSCompiler_object_inline_stack_3013),
enqueueConcurrentRenderForLane(
current,
JSCompiler_object_inline_stack_3012
JSCompiler_object_inline_stack_3013
),
scheduleUpdateOnFiber(
JSCompiler_object_inline_digest_3011,
JSCompiler_object_inline_digest_3012,
current,
JSCompiler_object_inline_stack_3012
JSCompiler_object_inline_stack_3013
),
SelectiveHydrationException)
);
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3013
JSCompiler_object_inline_componentStack_3014
) || renderDidSuspendDelayIfPossible();
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
@@ -10713,14 +10712,14 @@ __DEV__ &&
);
} else
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3013
JSCompiler_object_inline_componentStack_3014
)
? ((workInProgress.flags |= 192),
(workInProgress.child = current.child),
(workInProgress = null))
: ((current = prevState.treeContext),
(nextHydratableInstance = getNextHydratable(
JSCompiler_object_inline_componentStack_3013.nextSibling
JSCompiler_object_inline_componentStack_3014.nextSibling
)),
(hydrationParentFiber = workInProgress),
(isHydrating = !0),
@@ -10732,32 +10731,32 @@ __DEV__ &&
restoreSuspendedTreeContext(workInProgress, current),
(workInProgress = mountSuspensePrimaryChildren(
workInProgress,
JSCompiler_object_inline_stack_3012.children
JSCompiler_object_inline_stack_3013.children
)),
(workInProgress.flags |= 4096));
return workInProgress;
}
}
if (JSCompiler_object_inline_message_3010)
if (JSCompiler_object_inline_message_3011)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3012.fallback),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3013.fallback),
(nextFallbackChildren = workInProgress.mode),
(componentStack = current.child),
(JSCompiler_object_inline_componentStack_3013 =
(JSCompiler_object_inline_componentStack_3014 =
componentStack.sibling),
(JSCompiler_object_inline_stack_3012 = createWorkInProgress(
(JSCompiler_object_inline_stack_3013 = createWorkInProgress(
componentStack,
{
mode: "hidden",
children: JSCompiler_object_inline_stack_3012.children
children: JSCompiler_object_inline_stack_3013.children
}
)),
(JSCompiler_object_inline_stack_3012.subtreeFlags =
(JSCompiler_object_inline_stack_3013.subtreeFlags =
componentStack.subtreeFlags & 65011712),
null !== JSCompiler_object_inline_componentStack_3013
null !== JSCompiler_object_inline_componentStack_3014
? (nextPrimaryChildren = createWorkInProgress(
JSCompiler_object_inline_componentStack_3013,
JSCompiler_object_inline_componentStack_3014,
nextPrimaryChildren
))
: ((nextPrimaryChildren = createFiberFromFragment(
@@ -10768,24 +10767,24 @@ __DEV__ &&
)),
(nextPrimaryChildren.flags |= 2)),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3012.return = workInProgress),
(JSCompiler_object_inline_stack_3012.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3012),
(JSCompiler_object_inline_stack_3012 = nextPrimaryChildren),
(JSCompiler_object_inline_stack_3013.return = workInProgress),
(JSCompiler_object_inline_stack_3013.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3013),
(JSCompiler_object_inline_stack_3013 = nextPrimaryChildren),
(nextPrimaryChildren = workInProgress.child),
(nextFallbackChildren = current.child.memoizedState),
null === nextFallbackChildren
? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes))
: ((componentStack = nextFallbackChildren.cachePool),
null !== componentStack
? ((JSCompiler_object_inline_componentStack_3013 =
? ((JSCompiler_object_inline_componentStack_3014 =
CacheContext._currentValue),
(componentStack =
componentStack.parent !==
JSCompiler_object_inline_componentStack_3013
JSCompiler_object_inline_componentStack_3014
? {
parent: JSCompiler_object_inline_componentStack_3013,
pool: JSCompiler_object_inline_componentStack_3013
parent: JSCompiler_object_inline_componentStack_3014,
pool: JSCompiler_object_inline_componentStack_3014
}
: componentStack))
: (componentStack = getSuspendedCache()),
@@ -10802,52 +10801,52 @@ __DEV__ &&
((componentStack = enableTransitionTracing
? markerInstanceStack.current
: null),
(JSCompiler_object_inline_componentStack_3013 =
(JSCompiler_object_inline_componentStack_3014 =
nextPrimaryChildren.updateQueue),
(JSCompiler_object_inline_message_3010 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3013
(JSCompiler_object_inline_message_3011 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3014
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue: null
})
: JSCompiler_object_inline_componentStack_3013 ===
JSCompiler_object_inline_message_3010
: JSCompiler_object_inline_componentStack_3014 ===
JSCompiler_object_inline_message_3011
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue:
null !== JSCompiler_object_inline_message_3010
? JSCompiler_object_inline_message_3010.retryQueue
null !== JSCompiler_object_inline_message_3011
? JSCompiler_object_inline_message_3011.retryQueue
: null
})
: ((JSCompiler_object_inline_componentStack_3013.transitions =
: ((JSCompiler_object_inline_componentStack_3014.transitions =
nextFallbackChildren),
(JSCompiler_object_inline_componentStack_3013.markerInstances =
(JSCompiler_object_inline_componentStack_3014.markerInstances =
componentStack)))),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3011,
JSCompiler_object_inline_digest_3012,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
JSCompiler_object_inline_stack_3012
JSCompiler_object_inline_stack_3013
);
pushPrimaryTreeSuspenseHandler(workInProgress);
renderLanes = current.child;
current = renderLanes.sibling;
renderLanes = createWorkInProgress(renderLanes, {
mode: "visible",
children: JSCompiler_object_inline_stack_3012.children
children: JSCompiler_object_inline_stack_3013.children
});
renderLanes.return = workInProgress;
renderLanes.sibling = null;
null !== current &&
((JSCompiler_object_inline_digest_3011 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3011
((JSCompiler_object_inline_digest_3012 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3012
? ((workInProgress.deletions = [current]),
(workInProgress.flags |= 16))
: JSCompiler_object_inline_digest_3011.push(current));
: JSCompiler_object_inline_digest_3012.push(current));
workInProgress.child = renderLanes;
workInProgress.memoizedState = null;
return renderLanes;
@@ -31749,11 +31748,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-classic-f6fb1a07-20250723" !== isomorphicReactPackageVersion)
if ("19.2.0-www-classic-4f34cc4a-20250724" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-www-classic-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-classic-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -31796,10 +31795,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-f6fb1a07-20250723",
version: "19.2.0-www-classic-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32399,7 +32398,7 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+115 -116
View File
@@ -1479,11 +1479,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -10247,24 +10246,24 @@ __DEV__ &&
return current;
}
function updateSuspenseComponent(current, workInProgress, renderLanes) {
var JSCompiler_object_inline_digest_3006;
var JSCompiler_object_inline_stack_3007 = workInProgress.pendingProps;
var JSCompiler_object_inline_digest_3007;
var JSCompiler_object_inline_stack_3008 = workInProgress.pendingProps;
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
var JSCompiler_object_inline_message_3005 = !1;
var JSCompiler_object_inline_message_3006 = !1;
var didSuspend = 0 !== (workInProgress.flags & 128);
(JSCompiler_object_inline_digest_3006 = didSuspend) ||
(JSCompiler_object_inline_digest_3006 =
(JSCompiler_object_inline_digest_3007 = didSuspend) ||
(JSCompiler_object_inline_digest_3007 =
null !== current && null === current.memoizedState
? !1
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
JSCompiler_object_inline_digest_3006 &&
((JSCompiler_object_inline_message_3005 = !0),
JSCompiler_object_inline_digest_3007 &&
((JSCompiler_object_inline_message_3006 = !0),
(workInProgress.flags &= -129));
JSCompiler_object_inline_digest_3006 = 0 !== (workInProgress.flags & 32);
JSCompiler_object_inline_digest_3007 = 0 !== (workInProgress.flags & 32);
workInProgress.flags &= -33;
if (null === current) {
if (isHydrating) {
JSCompiler_object_inline_message_3005
JSCompiler_object_inline_message_3006
? pushPrimaryTreeSuspenseHandler(workInProgress)
: reuseSuspenseHandlerOnStack(workInProgress);
(current = nextHydratableInstance)
@@ -10277,18 +10276,18 @@ __DEV__ &&
? renderLanes
: null),
null !== renderLanes &&
((JSCompiler_object_inline_digest_3006 = {
((JSCompiler_object_inline_digest_3007 = {
dehydrated: renderLanes,
treeContext: getSuspendedTreeContext(),
retryLane: 536870912,
hydrationErrors: null
}),
(workInProgress.memoizedState =
JSCompiler_object_inline_digest_3006),
(JSCompiler_object_inline_digest_3006 =
JSCompiler_object_inline_digest_3007),
(JSCompiler_object_inline_digest_3007 =
createFiberFromDehydratedFragment(renderLanes)),
(JSCompiler_object_inline_digest_3006.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3006),
(JSCompiler_object_inline_digest_3007.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3007),
(hydrationParentFiber = workInProgress),
(nextHydratableInstance = null)))
: (renderLanes = null);
@@ -10302,12 +10301,12 @@ __DEV__ &&
: (workInProgress.lanes = 536870912);
return null;
}
var nextPrimaryChildren = JSCompiler_object_inline_stack_3007.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3007.fallback;
if (JSCompiler_object_inline_message_3005)
var nextPrimaryChildren = JSCompiler_object_inline_stack_3008.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3008.fallback;
if (JSCompiler_object_inline_message_3006)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3007 =
(JSCompiler_object_inline_stack_3008 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10319,7 +10318,7 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3006,
JSCompiler_object_inline_digest_3007,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10340,15 +10339,15 @@ __DEV__ &&
})
: ((renderLanes.transitions = workInProgress),
(renderLanes.markerInstances = current)))),
JSCompiler_object_inline_stack_3007
JSCompiler_object_inline_stack_3008
);
if (
"number" ===
typeof JSCompiler_object_inline_stack_3007.unstable_expectedLoadTime
typeof JSCompiler_object_inline_stack_3008.unstable_expectedLoadTime
)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3007 =
(JSCompiler_object_inline_stack_3008 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10360,12 +10359,12 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3006,
JSCompiler_object_inline_digest_3007,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
(workInProgress.lanes = 4194304),
JSCompiler_object_inline_stack_3007
JSCompiler_object_inline_stack_3008
);
pushPrimaryTreeSuspenseHandler(workInProgress);
return mountSuspensePrimaryChildren(
@@ -10375,8 +10374,8 @@ __DEV__ &&
}
var prevState = current.memoizedState;
if (null !== prevState) {
var JSCompiler_object_inline_componentStack_3008 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3008) {
var JSCompiler_object_inline_componentStack_3009 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3009) {
if (didSuspend)
workInProgress.flags & 256
? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10393,13 +10392,13 @@ __DEV__ &&
(workInProgress = null))
: (reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren =
JSCompiler_object_inline_stack_3007.fallback),
JSCompiler_object_inline_stack_3008.fallback),
(nextFallbackChildren = workInProgress.mode),
(JSCompiler_object_inline_stack_3007 =
(JSCompiler_object_inline_stack_3008 =
mountWorkInProgressOffscreenFiber(
{
mode: "visible",
children: JSCompiler_object_inline_stack_3007.children
children: JSCompiler_object_inline_stack_3008.children
},
nextFallbackChildren
)),
@@ -10410,24 +10409,24 @@ __DEV__ &&
null
)),
(nextPrimaryChildren.flags |= 2),
(JSCompiler_object_inline_stack_3007.return = workInProgress),
(JSCompiler_object_inline_stack_3008.return = workInProgress),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3007.sibling =
(JSCompiler_object_inline_stack_3008.sibling =
nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3007),
(workInProgress.child = JSCompiler_object_inline_stack_3008),
reconcileChildFibers(
workInProgress,
current.child,
null,
renderLanes
),
(JSCompiler_object_inline_stack_3007 = workInProgress.child),
(JSCompiler_object_inline_stack_3007.memoizedState =
(JSCompiler_object_inline_stack_3008 = workInProgress.child),
(JSCompiler_object_inline_stack_3008.memoizedState =
mountSuspenseOffscreenState(renderLanes)),
(JSCompiler_object_inline_stack_3007.childLanes =
(JSCompiler_object_inline_stack_3008.childLanes =
getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3006,
JSCompiler_object_inline_digest_3007,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10436,45 +10435,45 @@ __DEV__ &&
(pushPrimaryTreeSuspenseHandler(workInProgress),
warnIfHydrating(),
isSuspenseInstanceFallback(
JSCompiler_object_inline_componentStack_3008
JSCompiler_object_inline_componentStack_3009
))
) {
JSCompiler_object_inline_digest_3006 =
JSCompiler_object_inline_componentStack_3008.nextSibling &&
JSCompiler_object_inline_componentStack_3008.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3006) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3006.dgst;
var message = JSCompiler_object_inline_digest_3006.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3006.stck;
var componentStack = JSCompiler_object_inline_digest_3006.cstck;
JSCompiler_object_inline_digest_3007 =
JSCompiler_object_inline_componentStack_3009.nextSibling &&
JSCompiler_object_inline_componentStack_3009.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3007) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3007.dgst;
var message = JSCompiler_object_inline_digest_3007.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3007.stck;
var componentStack = JSCompiler_object_inline_digest_3007.cstck;
}
JSCompiler_object_inline_message_3005 = message;
JSCompiler_object_inline_digest_3006 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3007 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3008 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3005;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3008;
JSCompiler_object_inline_message_3006 = message;
JSCompiler_object_inline_digest_3007 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3008 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3009 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3006;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3009;
nextPrimaryChildren = nextPrimaryChildren
? Error(nextPrimaryChildren)
: Error(
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
);
nextPrimaryChildren.stack =
JSCompiler_object_inline_stack_3007 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3006;
JSCompiler_object_inline_digest_3006 =
JSCompiler_object_inline_stack_3008 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3007;
JSCompiler_object_inline_digest_3007 =
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
JSCompiler_object_inline_stack_3007 = {
JSCompiler_object_inline_stack_3008 = {
value: nextPrimaryChildren,
source: null,
stack: JSCompiler_object_inline_digest_3006
stack: JSCompiler_object_inline_digest_3007
};
"string" === typeof JSCompiler_object_inline_digest_3006 &&
"string" === typeof JSCompiler_object_inline_digest_3007 &&
CapturedStacks.set(
nextPrimaryChildren,
JSCompiler_object_inline_stack_3007
JSCompiler_object_inline_stack_3008
);
queueHydrationError(JSCompiler_object_inline_stack_3007);
queueHydrationError(JSCompiler_object_inline_stack_3008);
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
workInProgress,
@@ -10488,35 +10487,35 @@ __DEV__ &&
renderLanes,
!1
),
(JSCompiler_object_inline_digest_3006 =
(JSCompiler_object_inline_digest_3007 =
0 !== (renderLanes & current.childLanes)),
didReceiveUpdate || JSCompiler_object_inline_digest_3006)
didReceiveUpdate || JSCompiler_object_inline_digest_3007)
) {
JSCompiler_object_inline_digest_3006 = workInProgressRoot;
JSCompiler_object_inline_digest_3007 = workInProgressRoot;
if (
null !== JSCompiler_object_inline_digest_3006 &&
((JSCompiler_object_inline_stack_3007 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3006,
null !== JSCompiler_object_inline_digest_3007 &&
((JSCompiler_object_inline_stack_3008 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3007,
renderLanes
)),
0 !== JSCompiler_object_inline_stack_3007 &&
JSCompiler_object_inline_stack_3007 !== prevState.retryLane)
0 !== JSCompiler_object_inline_stack_3008 &&
JSCompiler_object_inline_stack_3008 !== prevState.retryLane)
)
throw (
((prevState.retryLane = JSCompiler_object_inline_stack_3007),
((prevState.retryLane = JSCompiler_object_inline_stack_3008),
enqueueConcurrentRenderForLane(
current,
JSCompiler_object_inline_stack_3007
JSCompiler_object_inline_stack_3008
),
scheduleUpdateOnFiber(
JSCompiler_object_inline_digest_3006,
JSCompiler_object_inline_digest_3007,
current,
JSCompiler_object_inline_stack_3007
JSCompiler_object_inline_stack_3008
),
SelectiveHydrationException)
);
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3008
JSCompiler_object_inline_componentStack_3009
) || renderDidSuspendDelayIfPossible();
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
@@ -10525,14 +10524,14 @@ __DEV__ &&
);
} else
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3008
JSCompiler_object_inline_componentStack_3009
)
? ((workInProgress.flags |= 192),
(workInProgress.child = current.child),
(workInProgress = null))
: ((current = prevState.treeContext),
(nextHydratableInstance = getNextHydratable(
JSCompiler_object_inline_componentStack_3008.nextSibling
JSCompiler_object_inline_componentStack_3009.nextSibling
)),
(hydrationParentFiber = workInProgress),
(isHydrating = !0),
@@ -10544,32 +10543,32 @@ __DEV__ &&
restoreSuspendedTreeContext(workInProgress, current),
(workInProgress = mountSuspensePrimaryChildren(
workInProgress,
JSCompiler_object_inline_stack_3007.children
JSCompiler_object_inline_stack_3008.children
)),
(workInProgress.flags |= 4096));
return workInProgress;
}
}
if (JSCompiler_object_inline_message_3005)
if (JSCompiler_object_inline_message_3006)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3007.fallback),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3008.fallback),
(nextFallbackChildren = workInProgress.mode),
(componentStack = current.child),
(JSCompiler_object_inline_componentStack_3008 =
(JSCompiler_object_inline_componentStack_3009 =
componentStack.sibling),
(JSCompiler_object_inline_stack_3007 = createWorkInProgress(
(JSCompiler_object_inline_stack_3008 = createWorkInProgress(
componentStack,
{
mode: "hidden",
children: JSCompiler_object_inline_stack_3007.children
children: JSCompiler_object_inline_stack_3008.children
}
)),
(JSCompiler_object_inline_stack_3007.subtreeFlags =
(JSCompiler_object_inline_stack_3008.subtreeFlags =
componentStack.subtreeFlags & 65011712),
null !== JSCompiler_object_inline_componentStack_3008
null !== JSCompiler_object_inline_componentStack_3009
? (nextPrimaryChildren = createWorkInProgress(
JSCompiler_object_inline_componentStack_3008,
JSCompiler_object_inline_componentStack_3009,
nextPrimaryChildren
))
: ((nextPrimaryChildren = createFiberFromFragment(
@@ -10580,24 +10579,24 @@ __DEV__ &&
)),
(nextPrimaryChildren.flags |= 2)),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3007.return = workInProgress),
(JSCompiler_object_inline_stack_3007.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3007),
(JSCompiler_object_inline_stack_3007 = nextPrimaryChildren),
(JSCompiler_object_inline_stack_3008.return = workInProgress),
(JSCompiler_object_inline_stack_3008.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3008),
(JSCompiler_object_inline_stack_3008 = nextPrimaryChildren),
(nextPrimaryChildren = workInProgress.child),
(nextFallbackChildren = current.child.memoizedState),
null === nextFallbackChildren
? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes))
: ((componentStack = nextFallbackChildren.cachePool),
null !== componentStack
? ((JSCompiler_object_inline_componentStack_3008 =
? ((JSCompiler_object_inline_componentStack_3009 =
CacheContext._currentValue),
(componentStack =
componentStack.parent !==
JSCompiler_object_inline_componentStack_3008
JSCompiler_object_inline_componentStack_3009
? {
parent: JSCompiler_object_inline_componentStack_3008,
pool: JSCompiler_object_inline_componentStack_3008
parent: JSCompiler_object_inline_componentStack_3009,
pool: JSCompiler_object_inline_componentStack_3009
}
: componentStack))
: (componentStack = getSuspendedCache()),
@@ -10614,52 +10613,52 @@ __DEV__ &&
((componentStack = enableTransitionTracing
? markerInstanceStack.current
: null),
(JSCompiler_object_inline_componentStack_3008 =
(JSCompiler_object_inline_componentStack_3009 =
nextPrimaryChildren.updateQueue),
(JSCompiler_object_inline_message_3005 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3008
(JSCompiler_object_inline_message_3006 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3009
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue: null
})
: JSCompiler_object_inline_componentStack_3008 ===
JSCompiler_object_inline_message_3005
: JSCompiler_object_inline_componentStack_3009 ===
JSCompiler_object_inline_message_3006
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue:
null !== JSCompiler_object_inline_message_3005
? JSCompiler_object_inline_message_3005.retryQueue
null !== JSCompiler_object_inline_message_3006
? JSCompiler_object_inline_message_3006.retryQueue
: null
})
: ((JSCompiler_object_inline_componentStack_3008.transitions =
: ((JSCompiler_object_inline_componentStack_3009.transitions =
nextFallbackChildren),
(JSCompiler_object_inline_componentStack_3008.markerInstances =
(JSCompiler_object_inline_componentStack_3009.markerInstances =
componentStack)))),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3006,
JSCompiler_object_inline_digest_3007,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
JSCompiler_object_inline_stack_3007
JSCompiler_object_inline_stack_3008
);
pushPrimaryTreeSuspenseHandler(workInProgress);
renderLanes = current.child;
current = renderLanes.sibling;
renderLanes = createWorkInProgress(renderLanes, {
mode: "visible",
children: JSCompiler_object_inline_stack_3007.children
children: JSCompiler_object_inline_stack_3008.children
});
renderLanes.return = workInProgress;
renderLanes.sibling = null;
null !== current &&
((JSCompiler_object_inline_digest_3006 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3006
((JSCompiler_object_inline_digest_3007 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3007
? ((workInProgress.deletions = [current]),
(workInProgress.flags |= 16))
: JSCompiler_object_inline_digest_3006.push(current));
: JSCompiler_object_inline_digest_3007.push(current));
workInProgress.child = renderLanes;
workInProgress.memoizedState = null;
return renderLanes;
@@ -31534,11 +31533,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-modern-f6fb1a07-20250723" !== isomorphicReactPackageVersion)
if ("19.2.0-www-modern-4f34cc4a-20250724" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-www-modern-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-modern-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -31581,10 +31580,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-f6fb1a07-20250723",
version: "19.2.0-www-modern-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32184,7 +32183,7 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -19564,14 +19564,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2069 = React.version;
if (
"19.2.0-www-classic-f6fb1a07-20250723" !==
"19.2.0-www-classic-4f34cc4a-20250724" !==
isomorphicReactPackageVersion$jscomp$inline_2069
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2069,
"19.2.0-www-classic-f6fb1a07-20250723"
"19.2.0-www-classic-4f34cc4a-20250724"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19589,10 +19589,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2682 = {
bundleType: 0,
version: "19.2.0-www-classic-f6fb1a07-20250723",
version: "19.2.0-www-classic-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2683 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -20004,4 +20004,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
@@ -19293,14 +19293,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2059 = React.version;
if (
"19.2.0-www-modern-f6fb1a07-20250723" !==
"19.2.0-www-modern-4f34cc4a-20250724" !==
isomorphicReactPackageVersion$jscomp$inline_2059
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2059,
"19.2.0-www-modern-f6fb1a07-20250723"
"19.2.0-www-modern-4f34cc4a-20250724"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19318,10 +19318,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2664 = {
bundleType: 0,
version: "19.2.0-www-modern-f6fb1a07-20250723",
version: "19.2.0-www-modern-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2665 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19733,4 +19733,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
@@ -21572,14 +21572,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2315 = React.version;
if (
"19.2.0-www-classic-f6fb1a07-20250723" !==
"19.2.0-www-classic-4f34cc4a-20250724" !==
isomorphicReactPackageVersion$jscomp$inline_2315
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2315,
"19.2.0-www-classic-f6fb1a07-20250723"
"19.2.0-www-classic-4f34cc4a-20250724"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -21597,10 +21597,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2317 = {
bundleType: 0,
version: "19.2.0-www-classic-f6fb1a07-20250723",
version: "19.2.0-www-classic-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
enableSchedulingProfiler &&
((internals$jscomp$inline_2317.getLaneLabelMap = getLaneLabelMap),
@@ -22015,7 +22015,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -21366,14 +21366,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2305 = React.version;
if (
"19.2.0-www-modern-f6fb1a07-20250723" !==
"19.2.0-www-modern-4f34cc4a-20250724" !==
isomorphicReactPackageVersion$jscomp$inline_2305
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2305,
"19.2.0-www-modern-f6fb1a07-20250723"
"19.2.0-www-modern-4f34cc4a-20250724"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -21391,10 +21391,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2307 = {
bundleType: 0,
version: "19.2.0-www-modern-f6fb1a07-20250723",
version: "19.2.0-www-modern-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
enableSchedulingProfiler &&
((internals$jscomp$inline_2307.getLaneLabelMap = getLaneLabelMap),
@@ -21809,7 +21809,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -10137,5 +10137,5 @@ __DEV__ &&
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
})();
@@ -10066,5 +10066,5 @@ __DEV__ &&
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
})();
@@ -6868,4 +6868,4 @@ exports.renderToString = function (children, options) {
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
@@ -6801,4 +6801,4 @@ exports.renderToString = function (children, options) {
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
@@ -1479,11 +1479,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -10476,24 +10475,24 @@ __DEV__ &&
return current;
}
function updateSuspenseComponent(current, workInProgress, renderLanes) {
var JSCompiler_object_inline_digest_3045;
var JSCompiler_object_inline_stack_3046 = workInProgress.pendingProps;
var JSCompiler_object_inline_digest_3046;
var JSCompiler_object_inline_stack_3047 = workInProgress.pendingProps;
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
var JSCompiler_object_inline_message_3044 = !1;
var JSCompiler_object_inline_message_3045 = !1;
var didSuspend = 0 !== (workInProgress.flags & 128);
(JSCompiler_object_inline_digest_3045 = didSuspend) ||
(JSCompiler_object_inline_digest_3045 =
(JSCompiler_object_inline_digest_3046 = didSuspend) ||
(JSCompiler_object_inline_digest_3046 =
null !== current && null === current.memoizedState
? !1
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
JSCompiler_object_inline_digest_3045 &&
((JSCompiler_object_inline_message_3044 = !0),
JSCompiler_object_inline_digest_3046 &&
((JSCompiler_object_inline_message_3045 = !0),
(workInProgress.flags &= -129));
JSCompiler_object_inline_digest_3045 = 0 !== (workInProgress.flags & 32);
JSCompiler_object_inline_digest_3046 = 0 !== (workInProgress.flags & 32);
workInProgress.flags &= -33;
if (null === current) {
if (isHydrating) {
JSCompiler_object_inline_message_3044
JSCompiler_object_inline_message_3045
? pushPrimaryTreeSuspenseHandler(workInProgress)
: reuseSuspenseHandlerOnStack(workInProgress);
(current = nextHydratableInstance)
@@ -10506,18 +10505,18 @@ __DEV__ &&
? renderLanes
: null),
null !== renderLanes &&
((JSCompiler_object_inline_digest_3045 = {
((JSCompiler_object_inline_digest_3046 = {
dehydrated: renderLanes,
treeContext: getSuspendedTreeContext(),
retryLane: 536870912,
hydrationErrors: null
}),
(workInProgress.memoizedState =
JSCompiler_object_inline_digest_3045),
(JSCompiler_object_inline_digest_3045 =
JSCompiler_object_inline_digest_3046),
(JSCompiler_object_inline_digest_3046 =
createFiberFromDehydratedFragment(renderLanes)),
(JSCompiler_object_inline_digest_3045.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3045),
(JSCompiler_object_inline_digest_3046.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3046),
(hydrationParentFiber = workInProgress),
(nextHydratableInstance = null)))
: (renderLanes = null);
@@ -10531,12 +10530,12 @@ __DEV__ &&
: (workInProgress.lanes = 536870912);
return null;
}
var nextPrimaryChildren = JSCompiler_object_inline_stack_3046.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3046.fallback;
if (JSCompiler_object_inline_message_3044)
var nextPrimaryChildren = JSCompiler_object_inline_stack_3047.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3047.fallback;
if (JSCompiler_object_inline_message_3045)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3046 =
(JSCompiler_object_inline_stack_3047 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10548,7 +10547,7 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3045,
JSCompiler_object_inline_digest_3046,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10569,15 +10568,15 @@ __DEV__ &&
})
: ((renderLanes.transitions = workInProgress),
(renderLanes.markerInstances = current)))),
JSCompiler_object_inline_stack_3046
JSCompiler_object_inline_stack_3047
);
if (
"number" ===
typeof JSCompiler_object_inline_stack_3046.unstable_expectedLoadTime
typeof JSCompiler_object_inline_stack_3047.unstable_expectedLoadTime
)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3046 =
(JSCompiler_object_inline_stack_3047 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10589,12 +10588,12 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3045,
JSCompiler_object_inline_digest_3046,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
(workInProgress.lanes = 4194304),
JSCompiler_object_inline_stack_3046
JSCompiler_object_inline_stack_3047
);
pushPrimaryTreeSuspenseHandler(workInProgress);
return mountSuspensePrimaryChildren(
@@ -10604,8 +10603,8 @@ __DEV__ &&
}
var prevState = current.memoizedState;
if (null !== prevState) {
var JSCompiler_object_inline_componentStack_3047 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3047) {
var JSCompiler_object_inline_componentStack_3048 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3048) {
if (didSuspend)
workInProgress.flags & 256
? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10622,13 +10621,13 @@ __DEV__ &&
(workInProgress = null))
: (reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren =
JSCompiler_object_inline_stack_3046.fallback),
JSCompiler_object_inline_stack_3047.fallback),
(nextFallbackChildren = workInProgress.mode),
(JSCompiler_object_inline_stack_3046 =
(JSCompiler_object_inline_stack_3047 =
mountWorkInProgressOffscreenFiber(
{
mode: "visible",
children: JSCompiler_object_inline_stack_3046.children
children: JSCompiler_object_inline_stack_3047.children
},
nextFallbackChildren
)),
@@ -10639,24 +10638,24 @@ __DEV__ &&
null
)),
(nextPrimaryChildren.flags |= 2),
(JSCompiler_object_inline_stack_3046.return = workInProgress),
(JSCompiler_object_inline_stack_3047.return = workInProgress),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3046.sibling =
(JSCompiler_object_inline_stack_3047.sibling =
nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3046),
(workInProgress.child = JSCompiler_object_inline_stack_3047),
reconcileChildFibers(
workInProgress,
current.child,
null,
renderLanes
),
(JSCompiler_object_inline_stack_3046 = workInProgress.child),
(JSCompiler_object_inline_stack_3046.memoizedState =
(JSCompiler_object_inline_stack_3047 = workInProgress.child),
(JSCompiler_object_inline_stack_3047.memoizedState =
mountSuspenseOffscreenState(renderLanes)),
(JSCompiler_object_inline_stack_3046.childLanes =
(JSCompiler_object_inline_stack_3047.childLanes =
getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3045,
JSCompiler_object_inline_digest_3046,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10665,45 +10664,45 @@ __DEV__ &&
(pushPrimaryTreeSuspenseHandler(workInProgress),
warnIfHydrating(),
isSuspenseInstanceFallback(
JSCompiler_object_inline_componentStack_3047
JSCompiler_object_inline_componentStack_3048
))
) {
JSCompiler_object_inline_digest_3045 =
JSCompiler_object_inline_componentStack_3047.nextSibling &&
JSCompiler_object_inline_componentStack_3047.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3045) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3045.dgst;
var message = JSCompiler_object_inline_digest_3045.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3045.stck;
var componentStack = JSCompiler_object_inline_digest_3045.cstck;
JSCompiler_object_inline_digest_3046 =
JSCompiler_object_inline_componentStack_3048.nextSibling &&
JSCompiler_object_inline_componentStack_3048.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3046) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3046.dgst;
var message = JSCompiler_object_inline_digest_3046.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3046.stck;
var componentStack = JSCompiler_object_inline_digest_3046.cstck;
}
JSCompiler_object_inline_message_3044 = message;
JSCompiler_object_inline_digest_3045 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3046 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3047 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3044;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3047;
JSCompiler_object_inline_message_3045 = message;
JSCompiler_object_inline_digest_3046 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3047 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3048 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3045;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3048;
nextPrimaryChildren = nextPrimaryChildren
? Error(nextPrimaryChildren)
: Error(
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
);
nextPrimaryChildren.stack =
JSCompiler_object_inline_stack_3046 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3045;
JSCompiler_object_inline_digest_3045 =
JSCompiler_object_inline_stack_3047 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3046;
JSCompiler_object_inline_digest_3046 =
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
JSCompiler_object_inline_stack_3046 = {
JSCompiler_object_inline_stack_3047 = {
value: nextPrimaryChildren,
source: null,
stack: JSCompiler_object_inline_digest_3045
stack: JSCompiler_object_inline_digest_3046
};
"string" === typeof JSCompiler_object_inline_digest_3045 &&
"string" === typeof JSCompiler_object_inline_digest_3046 &&
CapturedStacks.set(
nextPrimaryChildren,
JSCompiler_object_inline_stack_3046
JSCompiler_object_inline_stack_3047
);
queueHydrationError(JSCompiler_object_inline_stack_3046);
queueHydrationError(JSCompiler_object_inline_stack_3047);
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
workInProgress,
@@ -10717,35 +10716,35 @@ __DEV__ &&
renderLanes,
!1
),
(JSCompiler_object_inline_digest_3045 =
(JSCompiler_object_inline_digest_3046 =
0 !== (renderLanes & current.childLanes)),
didReceiveUpdate || JSCompiler_object_inline_digest_3045)
didReceiveUpdate || JSCompiler_object_inline_digest_3046)
) {
JSCompiler_object_inline_digest_3045 = workInProgressRoot;
JSCompiler_object_inline_digest_3046 = workInProgressRoot;
if (
null !== JSCompiler_object_inline_digest_3045 &&
((JSCompiler_object_inline_stack_3046 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3045,
null !== JSCompiler_object_inline_digest_3046 &&
((JSCompiler_object_inline_stack_3047 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3046,
renderLanes
)),
0 !== JSCompiler_object_inline_stack_3046 &&
JSCompiler_object_inline_stack_3046 !== prevState.retryLane)
0 !== JSCompiler_object_inline_stack_3047 &&
JSCompiler_object_inline_stack_3047 !== prevState.retryLane)
)
throw (
((prevState.retryLane = JSCompiler_object_inline_stack_3046),
((prevState.retryLane = JSCompiler_object_inline_stack_3047),
enqueueConcurrentRenderForLane(
current,
JSCompiler_object_inline_stack_3046
JSCompiler_object_inline_stack_3047
),
scheduleUpdateOnFiber(
JSCompiler_object_inline_digest_3045,
JSCompiler_object_inline_digest_3046,
current,
JSCompiler_object_inline_stack_3046
JSCompiler_object_inline_stack_3047
),
SelectiveHydrationException)
);
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3047
JSCompiler_object_inline_componentStack_3048
) || renderDidSuspendDelayIfPossible();
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
@@ -10754,14 +10753,14 @@ __DEV__ &&
);
} else
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3047
JSCompiler_object_inline_componentStack_3048
)
? ((workInProgress.flags |= 192),
(workInProgress.child = current.child),
(workInProgress = null))
: ((current = prevState.treeContext),
(nextHydratableInstance = getNextHydratable(
JSCompiler_object_inline_componentStack_3047.nextSibling
JSCompiler_object_inline_componentStack_3048.nextSibling
)),
(hydrationParentFiber = workInProgress),
(isHydrating = !0),
@@ -10773,32 +10772,32 @@ __DEV__ &&
restoreSuspendedTreeContext(workInProgress, current),
(workInProgress = mountSuspensePrimaryChildren(
workInProgress,
JSCompiler_object_inline_stack_3046.children
JSCompiler_object_inline_stack_3047.children
)),
(workInProgress.flags |= 4096));
return workInProgress;
}
}
if (JSCompiler_object_inline_message_3044)
if (JSCompiler_object_inline_message_3045)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3046.fallback),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3047.fallback),
(nextFallbackChildren = workInProgress.mode),
(componentStack = current.child),
(JSCompiler_object_inline_componentStack_3047 =
(JSCompiler_object_inline_componentStack_3048 =
componentStack.sibling),
(JSCompiler_object_inline_stack_3046 = createWorkInProgress(
(JSCompiler_object_inline_stack_3047 = createWorkInProgress(
componentStack,
{
mode: "hidden",
children: JSCompiler_object_inline_stack_3046.children
children: JSCompiler_object_inline_stack_3047.children
}
)),
(JSCompiler_object_inline_stack_3046.subtreeFlags =
(JSCompiler_object_inline_stack_3047.subtreeFlags =
componentStack.subtreeFlags & 65011712),
null !== JSCompiler_object_inline_componentStack_3047
null !== JSCompiler_object_inline_componentStack_3048
? (nextPrimaryChildren = createWorkInProgress(
JSCompiler_object_inline_componentStack_3047,
JSCompiler_object_inline_componentStack_3048,
nextPrimaryChildren
))
: ((nextPrimaryChildren = createFiberFromFragment(
@@ -10809,24 +10808,24 @@ __DEV__ &&
)),
(nextPrimaryChildren.flags |= 2)),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3046.return = workInProgress),
(JSCompiler_object_inline_stack_3046.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3046),
(JSCompiler_object_inline_stack_3046 = nextPrimaryChildren),
(JSCompiler_object_inline_stack_3047.return = workInProgress),
(JSCompiler_object_inline_stack_3047.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3047),
(JSCompiler_object_inline_stack_3047 = nextPrimaryChildren),
(nextPrimaryChildren = workInProgress.child),
(nextFallbackChildren = current.child.memoizedState),
null === nextFallbackChildren
? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes))
: ((componentStack = nextFallbackChildren.cachePool),
null !== componentStack
? ((JSCompiler_object_inline_componentStack_3047 =
? ((JSCompiler_object_inline_componentStack_3048 =
CacheContext._currentValue),
(componentStack =
componentStack.parent !==
JSCompiler_object_inline_componentStack_3047
JSCompiler_object_inline_componentStack_3048
? {
parent: JSCompiler_object_inline_componentStack_3047,
pool: JSCompiler_object_inline_componentStack_3047
parent: JSCompiler_object_inline_componentStack_3048,
pool: JSCompiler_object_inline_componentStack_3048
}
: componentStack))
: (componentStack = getSuspendedCache()),
@@ -10843,52 +10842,52 @@ __DEV__ &&
((componentStack = enableTransitionTracing
? markerInstanceStack.current
: null),
(JSCompiler_object_inline_componentStack_3047 =
(JSCompiler_object_inline_componentStack_3048 =
nextPrimaryChildren.updateQueue),
(JSCompiler_object_inline_message_3044 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3047
(JSCompiler_object_inline_message_3045 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3048
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue: null
})
: JSCompiler_object_inline_componentStack_3047 ===
JSCompiler_object_inline_message_3044
: JSCompiler_object_inline_componentStack_3048 ===
JSCompiler_object_inline_message_3045
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue:
null !== JSCompiler_object_inline_message_3044
? JSCompiler_object_inline_message_3044.retryQueue
null !== JSCompiler_object_inline_message_3045
? JSCompiler_object_inline_message_3045.retryQueue
: null
})
: ((JSCompiler_object_inline_componentStack_3047.transitions =
: ((JSCompiler_object_inline_componentStack_3048.transitions =
nextFallbackChildren),
(JSCompiler_object_inline_componentStack_3047.markerInstances =
(JSCompiler_object_inline_componentStack_3048.markerInstances =
componentStack)))),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3045,
JSCompiler_object_inline_digest_3046,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
JSCompiler_object_inline_stack_3046
JSCompiler_object_inline_stack_3047
);
pushPrimaryTreeSuspenseHandler(workInProgress);
renderLanes = current.child;
current = renderLanes.sibling;
renderLanes = createWorkInProgress(renderLanes, {
mode: "visible",
children: JSCompiler_object_inline_stack_3046.children
children: JSCompiler_object_inline_stack_3047.children
});
renderLanes.return = workInProgress;
renderLanes.sibling = null;
null !== current &&
((JSCompiler_object_inline_digest_3045 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3045
((JSCompiler_object_inline_digest_3046 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3046
? ((workInProgress.deletions = [current]),
(workInProgress.flags |= 16))
: JSCompiler_object_inline_digest_3045.push(current));
: JSCompiler_object_inline_digest_3046.push(current));
workInProgress.child = renderLanes;
workInProgress.memoizedState = null;
return renderLanes;
@@ -32070,11 +32069,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-classic-f6fb1a07-20250723" !== isomorphicReactPackageVersion)
if ("19.2.0-www-classic-4f34cc4a-20250724" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-www-classic-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-classic-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -32117,10 +32116,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-f6fb1a07-20250723",
version: "19.2.0-www-classic-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32886,5 +32885,5 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
})();
@@ -1479,11 +1479,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -10288,24 +10287,24 @@ __DEV__ &&
return current;
}
function updateSuspenseComponent(current, workInProgress, renderLanes) {
var JSCompiler_object_inline_digest_3040;
var JSCompiler_object_inline_stack_3041 = workInProgress.pendingProps;
var JSCompiler_object_inline_digest_3041;
var JSCompiler_object_inline_stack_3042 = workInProgress.pendingProps;
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
var JSCompiler_object_inline_message_3039 = !1;
var JSCompiler_object_inline_message_3040 = !1;
var didSuspend = 0 !== (workInProgress.flags & 128);
(JSCompiler_object_inline_digest_3040 = didSuspend) ||
(JSCompiler_object_inline_digest_3040 =
(JSCompiler_object_inline_digest_3041 = didSuspend) ||
(JSCompiler_object_inline_digest_3041 =
null !== current && null === current.memoizedState
? !1
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
JSCompiler_object_inline_digest_3040 &&
((JSCompiler_object_inline_message_3039 = !0),
JSCompiler_object_inline_digest_3041 &&
((JSCompiler_object_inline_message_3040 = !0),
(workInProgress.flags &= -129));
JSCompiler_object_inline_digest_3040 = 0 !== (workInProgress.flags & 32);
JSCompiler_object_inline_digest_3041 = 0 !== (workInProgress.flags & 32);
workInProgress.flags &= -33;
if (null === current) {
if (isHydrating) {
JSCompiler_object_inline_message_3039
JSCompiler_object_inline_message_3040
? pushPrimaryTreeSuspenseHandler(workInProgress)
: reuseSuspenseHandlerOnStack(workInProgress);
(current = nextHydratableInstance)
@@ -10318,18 +10317,18 @@ __DEV__ &&
? renderLanes
: null),
null !== renderLanes &&
((JSCompiler_object_inline_digest_3040 = {
((JSCompiler_object_inline_digest_3041 = {
dehydrated: renderLanes,
treeContext: getSuspendedTreeContext(),
retryLane: 536870912,
hydrationErrors: null
}),
(workInProgress.memoizedState =
JSCompiler_object_inline_digest_3040),
(JSCompiler_object_inline_digest_3040 =
JSCompiler_object_inline_digest_3041),
(JSCompiler_object_inline_digest_3041 =
createFiberFromDehydratedFragment(renderLanes)),
(JSCompiler_object_inline_digest_3040.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3040),
(JSCompiler_object_inline_digest_3041.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3041),
(hydrationParentFiber = workInProgress),
(nextHydratableInstance = null)))
: (renderLanes = null);
@@ -10343,12 +10342,12 @@ __DEV__ &&
: (workInProgress.lanes = 536870912);
return null;
}
var nextPrimaryChildren = JSCompiler_object_inline_stack_3041.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3041.fallback;
if (JSCompiler_object_inline_message_3039)
var nextPrimaryChildren = JSCompiler_object_inline_stack_3042.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3042.fallback;
if (JSCompiler_object_inline_message_3040)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3041 =
(JSCompiler_object_inline_stack_3042 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10360,7 +10359,7 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3040,
JSCompiler_object_inline_digest_3041,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10381,15 +10380,15 @@ __DEV__ &&
})
: ((renderLanes.transitions = workInProgress),
(renderLanes.markerInstances = current)))),
JSCompiler_object_inline_stack_3041
JSCompiler_object_inline_stack_3042
);
if (
"number" ===
typeof JSCompiler_object_inline_stack_3041.unstable_expectedLoadTime
typeof JSCompiler_object_inline_stack_3042.unstable_expectedLoadTime
)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3041 =
(JSCompiler_object_inline_stack_3042 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10401,12 +10400,12 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3040,
JSCompiler_object_inline_digest_3041,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
(workInProgress.lanes = 4194304),
JSCompiler_object_inline_stack_3041
JSCompiler_object_inline_stack_3042
);
pushPrimaryTreeSuspenseHandler(workInProgress);
return mountSuspensePrimaryChildren(
@@ -10416,8 +10415,8 @@ __DEV__ &&
}
var prevState = current.memoizedState;
if (null !== prevState) {
var JSCompiler_object_inline_componentStack_3042 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3042) {
var JSCompiler_object_inline_componentStack_3043 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3043) {
if (didSuspend)
workInProgress.flags & 256
? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10434,13 +10433,13 @@ __DEV__ &&
(workInProgress = null))
: (reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren =
JSCompiler_object_inline_stack_3041.fallback),
JSCompiler_object_inline_stack_3042.fallback),
(nextFallbackChildren = workInProgress.mode),
(JSCompiler_object_inline_stack_3041 =
(JSCompiler_object_inline_stack_3042 =
mountWorkInProgressOffscreenFiber(
{
mode: "visible",
children: JSCompiler_object_inline_stack_3041.children
children: JSCompiler_object_inline_stack_3042.children
},
nextFallbackChildren
)),
@@ -10451,24 +10450,24 @@ __DEV__ &&
null
)),
(nextPrimaryChildren.flags |= 2),
(JSCompiler_object_inline_stack_3041.return = workInProgress),
(JSCompiler_object_inline_stack_3042.return = workInProgress),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3041.sibling =
(JSCompiler_object_inline_stack_3042.sibling =
nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3041),
(workInProgress.child = JSCompiler_object_inline_stack_3042),
reconcileChildFibers(
workInProgress,
current.child,
null,
renderLanes
),
(JSCompiler_object_inline_stack_3041 = workInProgress.child),
(JSCompiler_object_inline_stack_3041.memoizedState =
(JSCompiler_object_inline_stack_3042 = workInProgress.child),
(JSCompiler_object_inline_stack_3042.memoizedState =
mountSuspenseOffscreenState(renderLanes)),
(JSCompiler_object_inline_stack_3041.childLanes =
(JSCompiler_object_inline_stack_3042.childLanes =
getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3040,
JSCompiler_object_inline_digest_3041,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10477,45 +10476,45 @@ __DEV__ &&
(pushPrimaryTreeSuspenseHandler(workInProgress),
warnIfHydrating(),
isSuspenseInstanceFallback(
JSCompiler_object_inline_componentStack_3042
JSCompiler_object_inline_componentStack_3043
))
) {
JSCompiler_object_inline_digest_3040 =
JSCompiler_object_inline_componentStack_3042.nextSibling &&
JSCompiler_object_inline_componentStack_3042.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3040) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3040.dgst;
var message = JSCompiler_object_inline_digest_3040.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3040.stck;
var componentStack = JSCompiler_object_inline_digest_3040.cstck;
JSCompiler_object_inline_digest_3041 =
JSCompiler_object_inline_componentStack_3043.nextSibling &&
JSCompiler_object_inline_componentStack_3043.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3041) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3041.dgst;
var message = JSCompiler_object_inline_digest_3041.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3041.stck;
var componentStack = JSCompiler_object_inline_digest_3041.cstck;
}
JSCompiler_object_inline_message_3039 = message;
JSCompiler_object_inline_digest_3040 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3041 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3042 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3039;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3042;
JSCompiler_object_inline_message_3040 = message;
JSCompiler_object_inline_digest_3041 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3042 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3043 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3040;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3043;
nextPrimaryChildren = nextPrimaryChildren
? Error(nextPrimaryChildren)
: Error(
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
);
nextPrimaryChildren.stack =
JSCompiler_object_inline_stack_3041 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3040;
JSCompiler_object_inline_digest_3040 =
JSCompiler_object_inline_stack_3042 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3041;
JSCompiler_object_inline_digest_3041 =
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
JSCompiler_object_inline_stack_3041 = {
JSCompiler_object_inline_stack_3042 = {
value: nextPrimaryChildren,
source: null,
stack: JSCompiler_object_inline_digest_3040
stack: JSCompiler_object_inline_digest_3041
};
"string" === typeof JSCompiler_object_inline_digest_3040 &&
"string" === typeof JSCompiler_object_inline_digest_3041 &&
CapturedStacks.set(
nextPrimaryChildren,
JSCompiler_object_inline_stack_3041
JSCompiler_object_inline_stack_3042
);
queueHydrationError(JSCompiler_object_inline_stack_3041);
queueHydrationError(JSCompiler_object_inline_stack_3042);
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
workInProgress,
@@ -10529,35 +10528,35 @@ __DEV__ &&
renderLanes,
!1
),
(JSCompiler_object_inline_digest_3040 =
(JSCompiler_object_inline_digest_3041 =
0 !== (renderLanes & current.childLanes)),
didReceiveUpdate || JSCompiler_object_inline_digest_3040)
didReceiveUpdate || JSCompiler_object_inline_digest_3041)
) {
JSCompiler_object_inline_digest_3040 = workInProgressRoot;
JSCompiler_object_inline_digest_3041 = workInProgressRoot;
if (
null !== JSCompiler_object_inline_digest_3040 &&
((JSCompiler_object_inline_stack_3041 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3040,
null !== JSCompiler_object_inline_digest_3041 &&
((JSCompiler_object_inline_stack_3042 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3041,
renderLanes
)),
0 !== JSCompiler_object_inline_stack_3041 &&
JSCompiler_object_inline_stack_3041 !== prevState.retryLane)
0 !== JSCompiler_object_inline_stack_3042 &&
JSCompiler_object_inline_stack_3042 !== prevState.retryLane)
)
throw (
((prevState.retryLane = JSCompiler_object_inline_stack_3041),
((prevState.retryLane = JSCompiler_object_inline_stack_3042),
enqueueConcurrentRenderForLane(
current,
JSCompiler_object_inline_stack_3041
JSCompiler_object_inline_stack_3042
),
scheduleUpdateOnFiber(
JSCompiler_object_inline_digest_3040,
JSCompiler_object_inline_digest_3041,
current,
JSCompiler_object_inline_stack_3041
JSCompiler_object_inline_stack_3042
),
SelectiveHydrationException)
);
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3042
JSCompiler_object_inline_componentStack_3043
) || renderDidSuspendDelayIfPossible();
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
@@ -10566,14 +10565,14 @@ __DEV__ &&
);
} else
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3042
JSCompiler_object_inline_componentStack_3043
)
? ((workInProgress.flags |= 192),
(workInProgress.child = current.child),
(workInProgress = null))
: ((current = prevState.treeContext),
(nextHydratableInstance = getNextHydratable(
JSCompiler_object_inline_componentStack_3042.nextSibling
JSCompiler_object_inline_componentStack_3043.nextSibling
)),
(hydrationParentFiber = workInProgress),
(isHydrating = !0),
@@ -10585,32 +10584,32 @@ __DEV__ &&
restoreSuspendedTreeContext(workInProgress, current),
(workInProgress = mountSuspensePrimaryChildren(
workInProgress,
JSCompiler_object_inline_stack_3041.children
JSCompiler_object_inline_stack_3042.children
)),
(workInProgress.flags |= 4096));
return workInProgress;
}
}
if (JSCompiler_object_inline_message_3039)
if (JSCompiler_object_inline_message_3040)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3041.fallback),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3042.fallback),
(nextFallbackChildren = workInProgress.mode),
(componentStack = current.child),
(JSCompiler_object_inline_componentStack_3042 =
(JSCompiler_object_inline_componentStack_3043 =
componentStack.sibling),
(JSCompiler_object_inline_stack_3041 = createWorkInProgress(
(JSCompiler_object_inline_stack_3042 = createWorkInProgress(
componentStack,
{
mode: "hidden",
children: JSCompiler_object_inline_stack_3041.children
children: JSCompiler_object_inline_stack_3042.children
}
)),
(JSCompiler_object_inline_stack_3041.subtreeFlags =
(JSCompiler_object_inline_stack_3042.subtreeFlags =
componentStack.subtreeFlags & 65011712),
null !== JSCompiler_object_inline_componentStack_3042
null !== JSCompiler_object_inline_componentStack_3043
? (nextPrimaryChildren = createWorkInProgress(
JSCompiler_object_inline_componentStack_3042,
JSCompiler_object_inline_componentStack_3043,
nextPrimaryChildren
))
: ((nextPrimaryChildren = createFiberFromFragment(
@@ -10621,24 +10620,24 @@ __DEV__ &&
)),
(nextPrimaryChildren.flags |= 2)),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3041.return = workInProgress),
(JSCompiler_object_inline_stack_3041.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3041),
(JSCompiler_object_inline_stack_3041 = nextPrimaryChildren),
(JSCompiler_object_inline_stack_3042.return = workInProgress),
(JSCompiler_object_inline_stack_3042.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3042),
(JSCompiler_object_inline_stack_3042 = nextPrimaryChildren),
(nextPrimaryChildren = workInProgress.child),
(nextFallbackChildren = current.child.memoizedState),
null === nextFallbackChildren
? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes))
: ((componentStack = nextFallbackChildren.cachePool),
null !== componentStack
? ((JSCompiler_object_inline_componentStack_3042 =
? ((JSCompiler_object_inline_componentStack_3043 =
CacheContext._currentValue),
(componentStack =
componentStack.parent !==
JSCompiler_object_inline_componentStack_3042
JSCompiler_object_inline_componentStack_3043
? {
parent: JSCompiler_object_inline_componentStack_3042,
pool: JSCompiler_object_inline_componentStack_3042
parent: JSCompiler_object_inline_componentStack_3043,
pool: JSCompiler_object_inline_componentStack_3043
}
: componentStack))
: (componentStack = getSuspendedCache()),
@@ -10655,52 +10654,52 @@ __DEV__ &&
((componentStack = enableTransitionTracing
? markerInstanceStack.current
: null),
(JSCompiler_object_inline_componentStack_3042 =
(JSCompiler_object_inline_componentStack_3043 =
nextPrimaryChildren.updateQueue),
(JSCompiler_object_inline_message_3039 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3042
(JSCompiler_object_inline_message_3040 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3043
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue: null
})
: JSCompiler_object_inline_componentStack_3042 ===
JSCompiler_object_inline_message_3039
: JSCompiler_object_inline_componentStack_3043 ===
JSCompiler_object_inline_message_3040
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue:
null !== JSCompiler_object_inline_message_3039
? JSCompiler_object_inline_message_3039.retryQueue
null !== JSCompiler_object_inline_message_3040
? JSCompiler_object_inline_message_3040.retryQueue
: null
})
: ((JSCompiler_object_inline_componentStack_3042.transitions =
: ((JSCompiler_object_inline_componentStack_3043.transitions =
nextFallbackChildren),
(JSCompiler_object_inline_componentStack_3042.markerInstances =
(JSCompiler_object_inline_componentStack_3043.markerInstances =
componentStack)))),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3040,
JSCompiler_object_inline_digest_3041,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
JSCompiler_object_inline_stack_3041
JSCompiler_object_inline_stack_3042
);
pushPrimaryTreeSuspenseHandler(workInProgress);
renderLanes = current.child;
current = renderLanes.sibling;
renderLanes = createWorkInProgress(renderLanes, {
mode: "visible",
children: JSCompiler_object_inline_stack_3041.children
children: JSCompiler_object_inline_stack_3042.children
});
renderLanes.return = workInProgress;
renderLanes.sibling = null;
null !== current &&
((JSCompiler_object_inline_digest_3040 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3040
((JSCompiler_object_inline_digest_3041 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3041
? ((workInProgress.deletions = [current]),
(workInProgress.flags |= 16))
: JSCompiler_object_inline_digest_3040.push(current));
: JSCompiler_object_inline_digest_3041.push(current));
workInProgress.child = renderLanes;
workInProgress.memoizedState = null;
return renderLanes;
@@ -31855,11 +31854,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-modern-f6fb1a07-20250723" !== isomorphicReactPackageVersion)
if ("19.2.0-www-modern-4f34cc4a-20250724" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-www-modern-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-modern-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -31902,10 +31901,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-f6fb1a07-20250723",
version: "19.2.0-www-modern-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32671,5 +32670,5 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
})();
@@ -19880,14 +19880,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2098 = React.version;
if (
"19.2.0-www-classic-f6fb1a07-20250723" !==
"19.2.0-www-classic-4f34cc4a-20250724" !==
isomorphicReactPackageVersion$jscomp$inline_2098
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2098,
"19.2.0-www-classic-f6fb1a07-20250723"
"19.2.0-www-classic-4f34cc4a-20250724"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19905,10 +19905,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2716 = {
bundleType: 0,
version: "19.2.0-www-classic-f6fb1a07-20250723",
version: "19.2.0-www-classic-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2717 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -20471,4 +20471,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
@@ -19609,14 +19609,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2088 = React.version;
if (
"19.2.0-www-modern-f6fb1a07-20250723" !==
"19.2.0-www-modern-4f34cc4a-20250724" !==
isomorphicReactPackageVersion$jscomp$inline_2088
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2088,
"19.2.0-www-modern-f6fb1a07-20250723"
"19.2.0-www-modern-4f34cc4a-20250724"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19634,10 +19634,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2698 = {
bundleType: 0,
version: "19.2.0-www-modern-f6fb1a07-20250723",
version: "19.2.0-www-modern-4f34cc4a-20250724",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2699 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -20200,4 +20200,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
@@ -2670,11 +2670,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -22127,7 +22126,7 @@ __DEV__ &&
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -2576,11 +2576,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -21907,7 +21906,7 @@ __DEV__ &&
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -14061,7 +14061,7 @@ module.exports = function ($$$config) {
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -13778,7 +13778,7 @@ module.exports = function ($$$config) {
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -13,7 +13,7 @@
"use strict";
__DEV__ &&
(function () {
function JSCompiler_object_inline_createNodeMock_1169() {
function JSCompiler_object_inline_createNodeMock_1170() {
return null;
}
function findHook(fiber, id) {
@@ -1764,11 +1764,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -15434,10 +15433,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-f6fb1a07-20250723",
version: "19.2.0-www-classic-4f34cc4a-20250724",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -15457,7 +15456,7 @@ __DEV__ &&
exports._Scheduler = Scheduler;
exports.act = act;
exports.create = function (element, options) {
var createNodeMock = JSCompiler_object_inline_createNodeMock_1169,
var createNodeMock = JSCompiler_object_inline_createNodeMock_1170,
isConcurrentOnly = !0 !== global.IS_REACT_NATIVE_TEST_ENVIRONMENT,
isConcurrent = isConcurrentOnly,
isStrictMode = !1;
@@ -15572,5 +15571,5 @@ __DEV__ &&
exports.unstable_batchedUpdates = function (fn, a) {
return fn(a);
};
exports.version = "19.2.0-www-classic-f6fb1a07-20250723";
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
})();
@@ -13,7 +13,7 @@
"use strict";
__DEV__ &&
(function () {
function JSCompiler_object_inline_createNodeMock_1169() {
function JSCompiler_object_inline_createNodeMock_1170() {
return null;
}
function findHook(fiber, id) {
@@ -1764,11 +1764,10 @@ __DEV__ &&
var fiber = workInProgress;
workInProgress = fiber._debugOwner;
var debugStack = fiber._debugStack;
workInProgress &&
debugStack &&
("string" !== typeof debugStack &&
(fiber._debugStack = debugStack = formatOwnerStack(debugStack)),
"" !== debugStack && (info += "\n" + debugStack));
if (workInProgress && debugStack) {
var formattedStack = formatOwnerStack(debugStack);
"" !== formattedStack && (info += "\n" + formattedStack);
}
} else if (null != workInProgress.debugStack) {
var ownerStack = workInProgress.debugStack;
(workInProgress = workInProgress.owner) &&
@@ -15434,10 +15433,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-f6fb1a07-20250723",
version: "19.2.0-www-modern-4f34cc4a-20250724",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-f6fb1a07-20250723"
reconcilerVersion: "19.2.0-www-modern-4f34cc4a-20250724"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -15457,7 +15456,7 @@ __DEV__ &&
exports._Scheduler = Scheduler;
exports.act = act;
exports.create = function (element, options) {
var createNodeMock = JSCompiler_object_inline_createNodeMock_1169,
var createNodeMock = JSCompiler_object_inline_createNodeMock_1170,
isConcurrentOnly = !0 !== global.IS_REACT_NATIVE_TEST_ENVIRONMENT,
isConcurrent = isConcurrentOnly,
isStrictMode = !1;
@@ -15572,5 +15571,5 @@ __DEV__ &&
exports.unstable_batchedUpdates = function (fn, a) {
return fn(a);
};
exports.version = "19.2.0-www-modern-f6fb1a07-20250723";
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
})();
+1 -1
View File
@@ -1 +1 @@
19.2.0-www-classic-f6fb1a07-20250723
19.2.0-www-classic-4f34cc4a-20250724
+1 -1
View File
@@ -1 +1 @@
19.2.0-www-modern-f6fb1a07-20250723
19.2.0-www-modern-4f34cc4a-20250724