Skip to content

Commit fa5cb16

Browse files
committed
Spawn new task if we hit stack overflow (#30419)
If we see the "Maximum call stack size exceeded" error we know we've hit stack overflow. We can recover from this by spawning a new task and trying again. Effectively a zero-cost trampoline in the normal case. The new task will have a clean stack. If you have a lot of siblings at the same depth that hits the limit you can end up hitting this once for each sibling but within that new sibling you're unlikely to hit this again. So it's not too expensive. If it errors again in the retryTask pass, the other error handling takes over which causes this to be able to still not infinitely stall. E.g. when the component itself throws an error like this. It's still better to increase the stack limit for performance if you have a really deep tree but it doesn't really hurt to be able to recover since it's zero cost when it doesn't happen. We could do the same thing for Flight. Those trees don't tend to be as deep but could happen. DiffTrain build for [96aca5f](96aca5f)
1 parent f5a54b1 commit fa5cb16

36 files changed

+771
-563
lines changed

compiled/facebook-www/REVISION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dcae56f8b72f625d8affe5729ca9991b31a492ac
1+
96aca5f4f3d7fbe0c13350f90031d8ec4c060ccb
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dcae56f8b72f625d8affe5729ca9991b31a492ac
1+
96aca5f4f3d7fbe0c13350f90031d8ec4c060ccb

compiled/facebook-www/React-dev.classic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2001,7 +2001,7 @@ __DEV__ &&
20012001
exports.useTransition = function () {
20022002
return resolveDispatcher().useTransition();
20032003
};
2004-
exports.version = "19.0.0-www-classic-dcae56f8-20240826";
2004+
exports.version = "19.0.0-www-classic-96aca5f4-20240827";
20052005
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
20062006
"function" ===
20072007
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-dev.modern.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1981,7 +1981,7 @@ __DEV__ &&
19811981
exports.useTransition = function () {
19821982
return resolveDispatcher().useTransition();
19831983
};
1984-
exports.version = "19.0.0-www-modern-dcae56f8-20240826";
1984+
exports.version = "19.0.0-www-modern-96aca5f4-20240827";
19851985
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
19861986
"function" ===
19871987
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-prod.classic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
665665
exports.useTransition = function () {
666666
return ReactSharedInternals.H.useTransition();
667667
};
668-
exports.version = "19.0.0-www-classic-dcae56f8-20240826";
668+
exports.version = "19.0.0-www-classic-96aca5f4-20240827";

compiled/facebook-www/React-prod.modern.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
665665
exports.useTransition = function () {
666666
return ReactSharedInternals.H.useTransition();
667667
};
668-
exports.version = "19.0.0-www-modern-dcae56f8-20240826";
668+
exports.version = "19.0.0-www-modern-96aca5f4-20240827";

compiled/facebook-www/React-profiling.classic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
669669
exports.useTransition = function () {
670670
return ReactSharedInternals.H.useTransition();
671671
};
672-
exports.version = "19.0.0-www-classic-dcae56f8-20240826";
672+
exports.version = "19.0.0-www-classic-96aca5f4-20240827";
673673
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
674674
"function" ===
675675
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-profiling.modern.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
669669
exports.useTransition = function () {
670670
return ReactSharedInternals.H.useTransition();
671671
};
672-
exports.version = "19.0.0-www-modern-dcae56f8-20240826";
672+
exports.version = "19.0.0-www-modern-96aca5f4-20240827";
673673
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
674674
"function" ===
675675
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.classic.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -16789,11 +16789,11 @@ __DEV__ &&
1678916789
(function () {
1679016790
var internals = {
1679116791
bundleType: 1,
16792-
version: "19.0.0-www-classic-dcae56f8-20240826",
16792+
version: "19.0.0-www-classic-96aca5f4-20240827",
1679316793
rendererPackageName: "react-art",
1679416794
currentDispatcherRef: ReactSharedInternals,
1679516795
findFiberByHostInstance: getInstanceFromNode,
16796-
reconcilerVersion: "19.0.0-www-classic-dcae56f8-20240826"
16796+
reconcilerVersion: "19.0.0-www-classic-96aca5f4-20240827"
1679716797
};
1679816798
internals.overrideHookState = overrideHookState;
1679916799
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -16827,7 +16827,7 @@ __DEV__ &&
1682716827
exports.Shape = Shape;
1682816828
exports.Surface = Surface;
1682916829
exports.Text = Text;
16830-
exports.version = "19.0.0-www-classic-dcae56f8-20240826";
16830+
exports.version = "19.0.0-www-classic-96aca5f4-20240827";
1683116831
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1683216832
"function" ===
1683316833
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.modern.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -16202,11 +16202,11 @@ __DEV__ &&
1620216202
(function () {
1620316203
var internals = {
1620416204
bundleType: 1,
16205-
version: "19.0.0-www-modern-dcae56f8-20240826",
16205+
version: "19.0.0-www-modern-96aca5f4-20240827",
1620616206
rendererPackageName: "react-art",
1620716207
currentDispatcherRef: ReactSharedInternals,
1620816208
findFiberByHostInstance: getInstanceFromNode,
16209-
reconcilerVersion: "19.0.0-www-modern-dcae56f8-20240826"
16209+
reconcilerVersion: "19.0.0-www-modern-96aca5f4-20240827"
1621016210
};
1621116211
internals.overrideHookState = overrideHookState;
1621216212
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -16240,7 +16240,7 @@ __DEV__ &&
1624016240
exports.Shape = Shape;
1624116241
exports.Surface = Surface;
1624216242
exports.Text = Text;
16243-
exports.version = "19.0.0-www-modern-dcae56f8-20240826";
16243+
exports.version = "19.0.0-www-modern-96aca5f4-20240827";
1624416244
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1624516245
"function" ===
1624616246
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-prod.classic.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -10638,13 +10638,13 @@ var slice = Array.prototype.slice,
1063810638
})(React.Component);
1063910639
var internals$jscomp$inline_1371 = {
1064010640
bundleType: 0,
10641-
version: "19.0.0-www-classic-dcae56f8-20240826",
10641+
version: "19.0.0-www-classic-96aca5f4-20240827",
1064210642
rendererPackageName: "react-art",
1064310643
currentDispatcherRef: ReactSharedInternals,
1064410644
findFiberByHostInstance: function () {
1064510645
return null;
1064610646
},
10647-
reconcilerVersion: "19.0.0-www-classic-dcae56f8-20240826"
10647+
reconcilerVersion: "19.0.0-www-classic-96aca5f4-20240827"
1064810648
};
1064910649
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1065010650
var hook$jscomp$inline_1372 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10670,4 +10670,4 @@ exports.RadialGradient = RadialGradient;
1067010670
exports.Shape = TYPES.SHAPE;
1067110671
exports.Surface = Surface;
1067210672
exports.Text = Text;
10673-
exports.version = "19.0.0-www-classic-dcae56f8-20240826";
10673+
exports.version = "19.0.0-www-classic-96aca5f4-20240827";

compiled/facebook-www/ReactART-prod.modern.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -10152,13 +10152,13 @@ var slice = Array.prototype.slice,
1015210152
})(React.Component);
1015310153
var internals$jscomp$inline_1363 = {
1015410154
bundleType: 0,
10155-
version: "19.0.0-www-modern-dcae56f8-20240826",
10155+
version: "19.0.0-www-modern-96aca5f4-20240827",
1015610156
rendererPackageName: "react-art",
1015710157
currentDispatcherRef: ReactSharedInternals,
1015810158
findFiberByHostInstance: function () {
1015910159
return null;
1016010160
},
10161-
reconcilerVersion: "19.0.0-www-modern-dcae56f8-20240826"
10161+
reconcilerVersion: "19.0.0-www-modern-96aca5f4-20240827"
1016210162
};
1016310163
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1016410164
var hook$jscomp$inline_1364 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10184,4 +10184,4 @@ exports.RadialGradient = RadialGradient;
1018410184
exports.Shape = TYPES.SHAPE;
1018510185
exports.Surface = Surface;
1018610186
exports.Text = Text;
10187-
exports.version = "19.0.0-www-modern-dcae56f8-20240826";
10187+
exports.version = "19.0.0-www-modern-96aca5f4-20240827";

compiled/facebook-www/ReactDOM-dev.classic.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -27537,11 +27537,11 @@ __DEV__ &&
2753727537
: flushSyncErrorInBuildsThatSupportLegacyMode;
2753827538
(function () {
2753927539
var isomorphicReactPackageVersion = React.version;
27540-
if ("19.0.0-www-classic-dcae56f8-20240826" !== isomorphicReactPackageVersion)
27540+
if ("19.0.0-www-classic-96aca5f4-20240827" !== isomorphicReactPackageVersion)
2754127541
throw Error(
2754227542
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2754327543
(isomorphicReactPackageVersion +
27544-
"\n - react-dom: 19.0.0-www-classic-dcae56f8-20240826\nLearn more: https://react.dev/warnings/version-mismatch")
27544+
"\n - react-dom: 19.0.0-www-classic-96aca5f4-20240827\nLearn more: https://react.dev/warnings/version-mismatch")
2754527545
);
2754627546
})();
2754727547
("function" === typeof Map &&
@@ -27585,11 +27585,11 @@ __DEV__ &&
2758527585
!(function () {
2758627586
var internals = {
2758727587
bundleType: 1,
27588-
version: "19.0.0-www-classic-dcae56f8-20240826",
27588+
version: "19.0.0-www-classic-96aca5f4-20240827",
2758927589
rendererPackageName: "react-dom",
2759027590
currentDispatcherRef: ReactSharedInternals,
2759127591
findFiberByHostInstance: getClosestInstanceFromNode,
27592-
reconcilerVersion: "19.0.0-www-classic-dcae56f8-20240826"
27592+
reconcilerVersion: "19.0.0-www-classic-96aca5f4-20240827"
2759327593
};
2759427594
internals.overrideHookState = overrideHookState;
2759527595
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -28242,7 +28242,7 @@ __DEV__ &&
2824228242
exports.useFormStatus = function () {
2824328243
return resolveDispatcher().useHostTransitionStatus();
2824428244
};
28245-
exports.version = "19.0.0-www-classic-dcae56f8-20240826";
28245+
exports.version = "19.0.0-www-classic-96aca5f4-20240827";
2824628246
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2824728247
"function" ===
2824828248
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-dev.modern.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -26622,11 +26622,11 @@ __DEV__ &&
2662226622
return_targetInst = null;
2662326623
(function () {
2662426624
var isomorphicReactPackageVersion = React.version;
26625-
if ("19.0.0-www-modern-dcae56f8-20240826" !== isomorphicReactPackageVersion)
26625+
if ("19.0.0-www-modern-96aca5f4-20240827" !== isomorphicReactPackageVersion)
2662626626
throw Error(
2662726627
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2662826628
(isomorphicReactPackageVersion +
26629-
"\n - react-dom: 19.0.0-www-modern-dcae56f8-20240826\nLearn more: https://react.dev/warnings/version-mismatch")
26629+
"\n - react-dom: 19.0.0-www-modern-96aca5f4-20240827\nLearn more: https://react.dev/warnings/version-mismatch")
2663026630
);
2663126631
})();
2663226632
("function" === typeof Map &&
@@ -26669,11 +26669,11 @@ __DEV__ &&
2666926669
!(function () {
2667026670
var internals = {
2667126671
bundleType: 1,
26672-
version: "19.0.0-www-modern-dcae56f8-20240826",
26672+
version: "19.0.0-www-modern-96aca5f4-20240827",
2667326673
rendererPackageName: "react-dom",
2667426674
currentDispatcherRef: ReactSharedInternals,
2667526675
findFiberByHostInstance: getClosestInstanceFromNode,
26676-
reconcilerVersion: "19.0.0-www-modern-dcae56f8-20240826"
26676+
reconcilerVersion: "19.0.0-www-modern-96aca5f4-20240827"
2667726677
};
2667826678
internals.overrideHookState = overrideHookState;
2667926679
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -27278,7 +27278,7 @@ __DEV__ &&
2727827278
exports.useFormStatus = function () {
2727927279
return resolveDispatcher().useHostTransitionStatus();
2728027280
};
27281-
exports.version = "19.0.0-www-modern-dcae56f8-20240826";
27281+
exports.version = "19.0.0-www-modern-96aca5f4-20240827";
2728227282
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2728327283
"function" ===
2728427284
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-prod.classic.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -17187,14 +17187,14 @@ function getCrossOriginStringAs(as, input) {
1718717187
}
1718817188
var isomorphicReactPackageVersion$jscomp$inline_1755 = React.version;
1718917189
if (
17190-
"19.0.0-www-classic-dcae56f8-20240826" !==
17190+
"19.0.0-www-classic-96aca5f4-20240827" !==
1719117191
isomorphicReactPackageVersion$jscomp$inline_1755
1719217192
)
1719317193
throw Error(
1719417194
formatProdErrorMessage(
1719517195
527,
1719617196
isomorphicReactPackageVersion$jscomp$inline_1755,
17197-
"19.0.0-www-classic-dcae56f8-20240826"
17197+
"19.0.0-www-classic-96aca5f4-20240827"
1719817198
)
1719917199
);
1720017200
function flushSyncFromReconciler(fn) {
@@ -17239,11 +17239,11 @@ Internals.Events = [
1723917239
];
1724017240
var internals$jscomp$inline_2219 = {
1724117241
bundleType: 0,
17242-
version: "19.0.0-www-classic-dcae56f8-20240826",
17242+
version: "19.0.0-www-classic-96aca5f4-20240827",
1724317243
rendererPackageName: "react-dom",
1724417244
currentDispatcherRef: ReactSharedInternals,
1724517245
findFiberByHostInstance: getClosestInstanceFromNode,
17246-
reconcilerVersion: "19.0.0-www-classic-dcae56f8-20240826"
17246+
reconcilerVersion: "19.0.0-www-classic-96aca5f4-20240827"
1724717247
};
1724817248
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1724917249
var hook$jscomp$inline_2220 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17699,4 +17699,4 @@ exports.useFormState = function (action, initialState, permalink) {
1769917699
exports.useFormStatus = function () {
1770017700
return ReactSharedInternals.H.useHostTransitionStatus();
1770117701
};
17702-
exports.version = "19.0.0-www-classic-dcae56f8-20240826";
17702+
exports.version = "19.0.0-www-classic-96aca5f4-20240827";

compiled/facebook-www/ReactDOM-prod.modern.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -16561,14 +16561,14 @@ function getCrossOriginStringAs(as, input) {
1656116561
}
1656216562
var isomorphicReactPackageVersion$jscomp$inline_1726 = React.version;
1656316563
if (
16564-
"19.0.0-www-modern-dcae56f8-20240826" !==
16564+
"19.0.0-www-modern-96aca5f4-20240827" !==
1656516565
isomorphicReactPackageVersion$jscomp$inline_1726
1656616566
)
1656716567
throw Error(
1656816568
formatProdErrorMessage(
1656916569
527,
1657016570
isomorphicReactPackageVersion$jscomp$inline_1726,
16571-
"19.0.0-www-modern-dcae56f8-20240826"
16571+
"19.0.0-www-modern-96aca5f4-20240827"
1657216572
)
1657316573
);
1657416574
Internals.findDOMNode = function (componentOrElement) {
@@ -16586,11 +16586,11 @@ Internals.Events = [
1658616586
];
1658716587
var internals$jscomp$inline_2210 = {
1658816588
bundleType: 0,
16589-
version: "19.0.0-www-modern-dcae56f8-20240826",
16589+
version: "19.0.0-www-modern-96aca5f4-20240827",
1659016590
rendererPackageName: "react-dom",
1659116591
currentDispatcherRef: ReactSharedInternals,
1659216592
findFiberByHostInstance: getClosestInstanceFromNode,
16593-
reconcilerVersion: "19.0.0-www-modern-dcae56f8-20240826"
16593+
reconcilerVersion: "19.0.0-www-modern-96aca5f4-20240827"
1659416594
};
1659516595
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1659616596
var hook$jscomp$inline_2211 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -16953,4 +16953,4 @@ exports.useFormState = function (action, initialState, permalink) {
1695316953
exports.useFormStatus = function () {
1695416954
return ReactSharedInternals.H.useHostTransitionStatus();
1695516955
};
16956-
exports.version = "19.0.0-www-modern-dcae56f8-20240826";
16956+
exports.version = "19.0.0-www-modern-96aca5f4-20240827";

compiled/facebook-www/ReactDOM-profiling.classic.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -17966,14 +17966,14 @@ function getCrossOriginStringAs(as, input) {
1796617966
}
1796717967
var isomorphicReactPackageVersion$jscomp$inline_1843 = React.version;
1796817968
if (
17969-
"19.0.0-www-classic-dcae56f8-20240826" !==
17969+
"19.0.0-www-classic-96aca5f4-20240827" !==
1797017970
isomorphicReactPackageVersion$jscomp$inline_1843
1797117971
)
1797217972
throw Error(
1797317973
formatProdErrorMessage(
1797417974
527,
1797517975
isomorphicReactPackageVersion$jscomp$inline_1843,
17976-
"19.0.0-www-classic-dcae56f8-20240826"
17976+
"19.0.0-www-classic-96aca5f4-20240827"
1797717977
)
1797817978
);
1797917979
function flushSyncFromReconciler(fn) {
@@ -18018,11 +18018,11 @@ Internals.Events = [
1801818018
];
1801918019
var internals$jscomp$inline_1850 = {
1802018020
bundleType: 0,
18021-
version: "19.0.0-www-classic-dcae56f8-20240826",
18021+
version: "19.0.0-www-classic-96aca5f4-20240827",
1802218022
rendererPackageName: "react-dom",
1802318023
currentDispatcherRef: ReactSharedInternals,
1802418024
findFiberByHostInstance: getClosestInstanceFromNode,
18025-
reconcilerVersion: "19.0.0-www-classic-dcae56f8-20240826"
18025+
reconcilerVersion: "19.0.0-www-classic-96aca5f4-20240827"
1802618026
};
1802718027
enableSchedulingProfiler &&
1802818028
((internals$jscomp$inline_1850.getLaneLabelMap = getLaneLabelMap),
@@ -18481,7 +18481,7 @@ exports.useFormState = function (action, initialState, permalink) {
1848118481
exports.useFormStatus = function () {
1848218482
return ReactSharedInternals.H.useHostTransitionStatus();
1848318483
};
18484-
exports.version = "19.0.0-www-classic-dcae56f8-20240826";
18484+
exports.version = "19.0.0-www-classic-96aca5f4-20240827";
1848518485
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1848618486
"function" ===
1848718487
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-profiling.modern.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -17323,14 +17323,14 @@ function getCrossOriginStringAs(as, input) {
1732317323
}
1732417324
var isomorphicReactPackageVersion$jscomp$inline_1814 = React.version;
1732517325
if (
17326-
"19.0.0-www-modern-dcae56f8-20240826" !==
17326+
"19.0.0-www-modern-96aca5f4-20240827" !==
1732717327
isomorphicReactPackageVersion$jscomp$inline_1814
1732817328
)
1732917329
throw Error(
1733017330
formatProdErrorMessage(
1733117331
527,
1733217332
isomorphicReactPackageVersion$jscomp$inline_1814,
17333-
"19.0.0-www-modern-dcae56f8-20240826"
17333+
"19.0.0-www-modern-96aca5f4-20240827"
1733417334
)
1733517335
);
1733617336
Internals.findDOMNode = function (componentOrElement) {
@@ -17348,11 +17348,11 @@ Internals.Events = [
1734817348
];
1734917349
var internals$jscomp$inline_1816 = {
1735017350
bundleType: 0,
17351-
version: "19.0.0-www-modern-dcae56f8-20240826",
17351+
version: "19.0.0-www-modern-96aca5f4-20240827",
1735217352
rendererPackageName: "react-dom",
1735317353
currentDispatcherRef: ReactSharedInternals,
1735417354
findFiberByHostInstance: getClosestInstanceFromNode,
17355-
reconcilerVersion: "19.0.0-www-modern-dcae56f8-20240826"
17355+
reconcilerVersion: "19.0.0-www-modern-96aca5f4-20240827"
1735617356
};
1735717357
enableSchedulingProfiler &&
1735817358
((internals$jscomp$inline_1816.getLaneLabelMap = getLaneLabelMap),
@@ -17718,7 +17718,7 @@ exports.useFormState = function (action, initialState, permalink) {
1771817718
exports.useFormStatus = function () {
1771917719
return ReactSharedInternals.H.useHostTransitionStatus();
1772017720
};
17721-
exports.version = "19.0.0-www-modern-dcae56f8-20240826";
17721+
exports.version = "19.0.0-www-modern-96aca5f4-20240827";
1772217722
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1772317723
"function" ===
1772417724
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)