Skip to content

Commit f9ec2cb

Browse files
committed
[Fizz] Block on Suspensey Fonts during reveal (facebook#33342)
This is the same technique we do for the client except we don't check whether this is newly created font loading to keep code small. Unfortunately, we can't use this technique for Suspensey images. They'll need to block before we call `startViewTransition` in a separate refactor. This is due to a bug in Chrome where `img.decode()` doesn't resolve until `startViewTransition` does. DiffTrain build for [c0464ae](facebook@c0464ae)
1 parent 149b6ab commit f9ec2cb

38 files changed

+117
-97
lines changed

compiled/eslint-plugin-react-hooks/index.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ const rule$2 = {
5656
type: 'string',
5757
},
5858
},
59+
requireExplicitEffectDeps: {
60+
type: 'boolean',
61+
}
5962
},
6063
},
6164
],
@@ -71,10 +74,12 @@ const rule$2 = {
7174
const experimental_autoDependenciesHooks = rawOptions && Array.isArray(rawOptions.experimental_autoDependenciesHooks)
7275
? rawOptions.experimental_autoDependenciesHooks
7376
: [];
77+
const requireExplicitEffectDeps = rawOptions && rawOptions.requireExplicitEffectDeps || false;
7478
const options = {
7579
additionalHooks,
7680
experimental_autoDependenciesHooks,
7781
enableDangerousAutofixThisMayCauseInfiniteLoops,
82+
requireExplicitEffectDeps,
7883
};
7984
function reportProblem(problem) {
8085
if (enableDangerousAutofixThisMayCauseInfiniteLoops) {
@@ -934,6 +939,13 @@ const rule$2 = {
934939
});
935940
return;
936941
}
942+
if (!maybeNode && isEffect && options.requireExplicitEffectDeps) {
943+
reportProblem({
944+
node: reactiveHook,
945+
message: `React Hook ${reactiveHookName} always requires dependencies. ` +
946+
`Please add a dependency array or an explicit \`undefined\``
947+
});
948+
}
937949
const isAutoDepsHook = options.experimental_autoDependenciesHooks.includes(reactiveHookName);
938950
if ((!declaredDependenciesNode ||
939951
(isAutoDepsHook &&

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bfaeb4a46175fa0f4edf2eba58349d5029e5e86e
1+
c0464aedb16b1c970d717651bba8d1c66c578729
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bfaeb4a46175fa0f4edf2eba58349d5029e5e86e
1+
c0464aedb16b1c970d717651bba8d1c66c578729

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,7 @@ __DEV__ &&
15371537
exports.useTransition = function () {
15381538
return resolveDispatcher().useTransition();
15391539
};
1540-
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
1540+
exports.version = "19.2.0-www-classic-c0464aed-20250523";
15411541
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
15421542
"function" ===
15431543
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,7 @@ __DEV__ &&
15371537
exports.useTransition = function () {
15381538
return resolveDispatcher().useTransition();
15391539
};
1540-
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
1540+
exports.version = "19.2.0-www-modern-c0464aed-20250523";
15411541
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
15421542
"function" ===
15431543
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,4 +635,4 @@ exports.useSyncExternalStore = function (
635635
exports.useTransition = function () {
636636
return ReactSharedInternals.H.useTransition();
637637
};
638-
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
638+
exports.version = "19.2.0-www-classic-c0464aed-20250523";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,4 +635,4 @@ exports.useSyncExternalStore = function (
635635
exports.useTransition = function () {
636636
return ReactSharedInternals.H.useTransition();
637637
};
638-
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
638+
exports.version = "19.2.0-www-modern-c0464aed-20250523";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ exports.useSyncExternalStore = function (
639639
exports.useTransition = function () {
640640
return ReactSharedInternals.H.useTransition();
641641
};
642-
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
642+
exports.version = "19.2.0-www-classic-c0464aed-20250523";
643643
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
644644
"function" ===
645645
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ exports.useSyncExternalStore = function (
639639
exports.useTransition = function () {
640640
return ReactSharedInternals.H.useTransition();
641641
};
642-
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
642+
exports.version = "19.2.0-www-modern-c0464aed-20250523";
643643
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
644644
"function" ===
645645
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19080,10 +19080,10 @@ __DEV__ &&
1908019080
(function () {
1908119081
var internals = {
1908219082
bundleType: 1,
19083-
version: "19.2.0-www-classic-bfaeb4a4-20250522",
19083+
version: "19.2.0-www-classic-c0464aed-20250523",
1908419084
rendererPackageName: "react-art",
1908519085
currentDispatcherRef: ReactSharedInternals,
19086-
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
19086+
reconcilerVersion: "19.2.0-www-classic-c0464aed-20250523"
1908719087
};
1908819088
internals.overrideHookState = overrideHookState;
1908919089
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19117,7 +19117,7 @@ __DEV__ &&
1911719117
exports.Shape = Shape;
1911819118
exports.Surface = Surface;
1911919119
exports.Text = Text;
19120-
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
19120+
exports.version = "19.2.0-www-classic-c0464aed-20250523";
1912119121
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1912219122
"function" ===
1912319123
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18852,10 +18852,10 @@ __DEV__ &&
1885218852
(function () {
1885318853
var internals = {
1885418854
bundleType: 1,
18855-
version: "19.2.0-www-modern-bfaeb4a4-20250522",
18855+
version: "19.2.0-www-modern-c0464aed-20250523",
1885618856
rendererPackageName: "react-art",
1885718857
currentDispatcherRef: ReactSharedInternals,
18858-
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
18858+
reconcilerVersion: "19.2.0-www-modern-c0464aed-20250523"
1885918859
};
1886018860
internals.overrideHookState = overrideHookState;
1886118861
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -18889,7 +18889,7 @@ __DEV__ &&
1888918889
exports.Shape = Shape;
1889018890
exports.Surface = Surface;
1889118891
exports.Text = Text;
18892-
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
18892+
exports.version = "19.2.0-www-modern-c0464aed-20250523";
1889318893
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1889418894
"function" ===
1889518895
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11392,10 +11392,10 @@ var slice = Array.prototype.slice,
1139211392
})(React.Component);
1139311393
var internals$jscomp$inline_1624 = {
1139411394
bundleType: 0,
11395-
version: "19.2.0-www-classic-bfaeb4a4-20250522",
11395+
version: "19.2.0-www-classic-c0464aed-20250523",
1139611396
rendererPackageName: "react-art",
1139711397
currentDispatcherRef: ReactSharedInternals,
11398-
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
11398+
reconcilerVersion: "19.2.0-www-classic-c0464aed-20250523"
1139911399
};
1140011400
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1140111401
var hook$jscomp$inline_1625 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11421,4 +11421,4 @@ exports.RadialGradient = RadialGradient;
1142111421
exports.Shape = TYPES.SHAPE;
1142211422
exports.Surface = Surface;
1142311423
exports.Text = Text;
11424-
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
11424+
exports.version = "19.2.0-www-classic-c0464aed-20250523";

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11104,10 +11104,10 @@ var slice = Array.prototype.slice,
1110411104
})(React.Component);
1110511105
var internals$jscomp$inline_1597 = {
1110611106
bundleType: 0,
11107-
version: "19.2.0-www-modern-bfaeb4a4-20250522",
11107+
version: "19.2.0-www-modern-c0464aed-20250523",
1110811108
rendererPackageName: "react-art",
1110911109
currentDispatcherRef: ReactSharedInternals,
11110-
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
11110+
reconcilerVersion: "19.2.0-www-modern-c0464aed-20250523"
1111111111
};
1111211112
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1111311113
var hook$jscomp$inline_1598 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11133,4 +11133,4 @@ exports.RadialGradient = RadialGradient;
1113311133
exports.Shape = TYPES.SHAPE;
1113411134
exports.Surface = Surface;
1113511135
exports.Text = Text;
11136-
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
11136+
exports.version = "19.2.0-www-modern-c0464aed-20250523";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31452,11 +31452,11 @@ __DEV__ &&
3145231452
return_targetInst = null;
3145331453
(function () {
3145431454
var isomorphicReactPackageVersion = React.version;
31455-
if ("19.2.0-www-classic-bfaeb4a4-20250522" !== isomorphicReactPackageVersion)
31455+
if ("19.2.0-www-classic-c0464aed-20250523" !== isomorphicReactPackageVersion)
3145631456
throw Error(
3145731457
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3145831458
(isomorphicReactPackageVersion +
31459-
"\n - react-dom: 19.2.0-www-classic-bfaeb4a4-20250522\nLearn more: https://react.dev/warnings/version-mismatch")
31459+
"\n - react-dom: 19.2.0-www-classic-c0464aed-20250523\nLearn more: https://react.dev/warnings/version-mismatch")
3146031460
);
3146131461
})();
3146231462
("function" === typeof Map &&
@@ -31499,10 +31499,10 @@ __DEV__ &&
3149931499
!(function () {
3150031500
var internals = {
3150131501
bundleType: 1,
31502-
version: "19.2.0-www-classic-bfaeb4a4-20250522",
31502+
version: "19.2.0-www-classic-c0464aed-20250523",
3150331503
rendererPackageName: "react-dom",
3150431504
currentDispatcherRef: ReactSharedInternals,
31505-
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
31505+
reconcilerVersion: "19.2.0-www-classic-c0464aed-20250523"
3150631506
};
3150731507
internals.overrideHookState = overrideHookState;
3150831508
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32102,7 +32102,7 @@ __DEV__ &&
3210232102
exports.useFormStatus = function () {
3210332103
return resolveDispatcher().useHostTransitionStatus();
3210432104
};
32105-
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
32105+
exports.version = "19.2.0-www-classic-c0464aed-20250523";
3210632106
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3210732107
"function" ===
3210832108
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31238,11 +31238,11 @@ __DEV__ &&
3123831238
return_targetInst = null;
3123931239
(function () {
3124031240
var isomorphicReactPackageVersion = React.version;
31241-
if ("19.2.0-www-modern-bfaeb4a4-20250522" !== isomorphicReactPackageVersion)
31241+
if ("19.2.0-www-modern-c0464aed-20250523" !== isomorphicReactPackageVersion)
3124231242
throw Error(
3124331243
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3124431244
(isomorphicReactPackageVersion +
31245-
"\n - react-dom: 19.2.0-www-modern-bfaeb4a4-20250522\nLearn more: https://react.dev/warnings/version-mismatch")
31245+
"\n - react-dom: 19.2.0-www-modern-c0464aed-20250523\nLearn more: https://react.dev/warnings/version-mismatch")
3124631246
);
3124731247
})();
3124831248
("function" === typeof Map &&
@@ -31285,10 +31285,10 @@ __DEV__ &&
3128531285
!(function () {
3128631286
var internals = {
3128731287
bundleType: 1,
31288-
version: "19.2.0-www-modern-bfaeb4a4-20250522",
31288+
version: "19.2.0-www-modern-c0464aed-20250523",
3128931289
rendererPackageName: "react-dom",
3129031290
currentDispatcherRef: ReactSharedInternals,
31291-
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
31291+
reconcilerVersion: "19.2.0-www-modern-c0464aed-20250523"
3129231292
};
3129331293
internals.overrideHookState = overrideHookState;
3129431294
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31888,7 +31888,7 @@ __DEV__ &&
3188831888
exports.useFormStatus = function () {
3188931889
return resolveDispatcher().useHostTransitionStatus();
3189031890
};
31891-
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
31891+
exports.version = "19.2.0-www-modern-c0464aed-20250523";
3189231892
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3189331893
"function" ===
3189431894
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19566,14 +19566,14 @@ function getCrossOriginStringAs(as, input) {
1956619566
}
1956719567
var isomorphicReactPackageVersion$jscomp$inline_2083 = React.version;
1956819568
if (
19569-
"19.2.0-www-classic-bfaeb4a4-20250522" !==
19569+
"19.2.0-www-classic-c0464aed-20250523" !==
1957019570
isomorphicReactPackageVersion$jscomp$inline_2083
1957119571
)
1957219572
throw Error(
1957319573
formatProdErrorMessage(
1957419574
527,
1957519575
isomorphicReactPackageVersion$jscomp$inline_2083,
19576-
"19.2.0-www-classic-bfaeb4a4-20250522"
19576+
"19.2.0-www-classic-c0464aed-20250523"
1957719577
)
1957819578
);
1957919579
Internals.findDOMNode = function (componentOrElement) {
@@ -19591,10 +19591,10 @@ Internals.Events = [
1959119591
];
1959219592
var internals$jscomp$inline_2696 = {
1959319593
bundleType: 0,
19594-
version: "19.2.0-www-classic-bfaeb4a4-20250522",
19594+
version: "19.2.0-www-classic-c0464aed-20250523",
1959519595
rendererPackageName: "react-dom",
1959619596
currentDispatcherRef: ReactSharedInternals,
19597-
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
19597+
reconcilerVersion: "19.2.0-www-classic-c0464aed-20250523"
1959819598
};
1959919599
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1960019600
var hook$jscomp$inline_2697 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -20006,4 +20006,4 @@ exports.useFormState = function (action, initialState, permalink) {
2000620006
exports.useFormStatus = function () {
2000720007
return ReactSharedInternals.H.useHostTransitionStatus();
2000820008
};
20009-
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
20009+
exports.version = "19.2.0-www-classic-c0464aed-20250523";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19295,14 +19295,14 @@ function getCrossOriginStringAs(as, input) {
1929519295
}
1929619296
var isomorphicReactPackageVersion$jscomp$inline_2073 = React.version;
1929719297
if (
19298-
"19.2.0-www-modern-bfaeb4a4-20250522" !==
19298+
"19.2.0-www-modern-c0464aed-20250523" !==
1929919299
isomorphicReactPackageVersion$jscomp$inline_2073
1930019300
)
1930119301
throw Error(
1930219302
formatProdErrorMessage(
1930319303
527,
1930419304
isomorphicReactPackageVersion$jscomp$inline_2073,
19305-
"19.2.0-www-modern-bfaeb4a4-20250522"
19305+
"19.2.0-www-modern-c0464aed-20250523"
1930619306
)
1930719307
);
1930819308
Internals.findDOMNode = function (componentOrElement) {
@@ -19320,10 +19320,10 @@ Internals.Events = [
1932019320
];
1932119321
var internals$jscomp$inline_2678 = {
1932219322
bundleType: 0,
19323-
version: "19.2.0-www-modern-bfaeb4a4-20250522",
19323+
version: "19.2.0-www-modern-c0464aed-20250523",
1932419324
rendererPackageName: "react-dom",
1932519325
currentDispatcherRef: ReactSharedInternals,
19326-
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
19326+
reconcilerVersion: "19.2.0-www-modern-c0464aed-20250523"
1932719327
};
1932819328
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1932919329
var hook$jscomp$inline_2679 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19735,4 +19735,4 @@ exports.useFormState = function (action, initialState, permalink) {
1973519735
exports.useFormStatus = function () {
1973619736
return ReactSharedInternals.H.useHostTransitionStatus();
1973719737
};
19738-
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
19738+
exports.version = "19.2.0-www-modern-c0464aed-20250523";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21548,14 +21548,14 @@ function getCrossOriginStringAs(as, input) {
2154821548
}
2154921549
var isomorphicReactPackageVersion$jscomp$inline_2327 = React.version;
2155021550
if (
21551-
"19.2.0-www-classic-bfaeb4a4-20250522" !==
21551+
"19.2.0-www-classic-c0464aed-20250523" !==
2155221552
isomorphicReactPackageVersion$jscomp$inline_2327
2155321553
)
2155421554
throw Error(
2155521555
formatProdErrorMessage(
2155621556
527,
2155721557
isomorphicReactPackageVersion$jscomp$inline_2327,
21558-
"19.2.0-www-classic-bfaeb4a4-20250522"
21558+
"19.2.0-www-classic-c0464aed-20250523"
2155921559
)
2156021560
);
2156121561
Internals.findDOMNode = function (componentOrElement) {
@@ -21573,10 +21573,10 @@ Internals.Events = [
2157321573
];
2157421574
var internals$jscomp$inline_2329 = {
2157521575
bundleType: 0,
21576-
version: "19.2.0-www-classic-bfaeb4a4-20250522",
21576+
version: "19.2.0-www-classic-c0464aed-20250523",
2157721577
rendererPackageName: "react-dom",
2157821578
currentDispatcherRef: ReactSharedInternals,
21579-
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
21579+
reconcilerVersion: "19.2.0-www-classic-c0464aed-20250523"
2158021580
};
2158121581
enableSchedulingProfiler &&
2158221582
((internals$jscomp$inline_2329.getLaneLabelMap = getLaneLabelMap),
@@ -21991,7 +21991,7 @@ exports.useFormState = function (action, initialState, permalink) {
2199121991
exports.useFormStatus = function () {
2199221992
return ReactSharedInternals.H.useHostTransitionStatus();
2199321993
};
21994-
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
21994+
exports.version = "19.2.0-www-classic-c0464aed-20250523";
2199521995
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2199621996
"function" ===
2199721997
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21346,14 +21346,14 @@ function getCrossOriginStringAs(as, input) {
2134621346
}
2134721347
var isomorphicReactPackageVersion$jscomp$inline_2317 = React.version;
2134821348
if (
21349-
"19.2.0-www-modern-bfaeb4a4-20250522" !==
21349+
"19.2.0-www-modern-c0464aed-20250523" !==
2135021350
isomorphicReactPackageVersion$jscomp$inline_2317
2135121351
)
2135221352
throw Error(
2135321353
formatProdErrorMessage(
2135421354
527,
2135521355
isomorphicReactPackageVersion$jscomp$inline_2317,
21356-
"19.2.0-www-modern-bfaeb4a4-20250522"
21356+
"19.2.0-www-modern-c0464aed-20250523"
2135721357
)
2135821358
);
2135921359
Internals.findDOMNode = function (componentOrElement) {
@@ -21371,10 +21371,10 @@ Internals.Events = [
2137121371
];
2137221372
var internals$jscomp$inline_2319 = {
2137321373
bundleType: 0,
21374-
version: "19.2.0-www-modern-bfaeb4a4-20250522",
21374+
version: "19.2.0-www-modern-c0464aed-20250523",
2137521375
rendererPackageName: "react-dom",
2137621376
currentDispatcherRef: ReactSharedInternals,
21377-
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
21377+
reconcilerVersion: "19.2.0-www-modern-c0464aed-20250523"
2137821378
};
2137921379
enableSchedulingProfiler &&
2138021380
((internals$jscomp$inline_2319.getLaneLabelMap = getLaneLabelMap),
@@ -21789,7 +21789,7 @@ exports.useFormState = function (action, initialState, permalink) {
2178921789
exports.useFormStatus = function () {
2179021790
return ReactSharedInternals.H.useHostTransitionStatus();
2179121791
};
21792-
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
21792+
exports.version = "19.2.0-www-modern-c0464aed-20250523";
2179321793
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2179421794
"function" ===
2179521795
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)