Skip to content

Commit 149b6ab

Browse files
committed
Fix incorrect use of NoLanes in executionContext check (facebook#33170)
## Summary This PR fixes a likely incorrect condition in the `scheduleUpdateOnFiber` function inside `ReactFiberWorkLoop.js`. Previously, the code checked: ```js (executionContext & RenderContext) !== NoLanes ```` However, `NoLanes` is part of the lane priority system, not the execution context flags. The intent here seems to be to detect whether the current execution context includes `RenderContext`, which should be compared against `NoContext`, not `NoLanes`. This fix replaces `NoLanes` with `NoContext` for semantic correctness and consistency with other checks throughout the codebase. **Fixes [[facebook#33169](https://github.com/facebook/react/issues/33169)](https://github.com/facebook/react/issues/33169)** --- ## How did you test this change? I ran the following commands to validate correctness and ensure nothing was broken: * `yarn lint` * `yarn linc` * `yarn test` * `yarn test --prod` * `yarn flow` * `yarn prettier` All checks passed. Since this is a minor internal logic fix and doesn't change public behavior or APIs, no additional tests are necessary at this time. DiffTrain build for [bfaeb4a](facebook@bfaeb4a)
1 parent 5d63b63 commit 149b6ab

34 files changed

+96
-96
lines changed

compiled/facebook-www/REVISION

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

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-3e9db65f-20250522";
1540+
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
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-3e9db65f-20250522";
1540+
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
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-3e9db65f-20250522";
638+
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";

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-3e9db65f-20250522";
638+
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";

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-3e9db65f-20250522";
642+
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
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-3e9db65f-20250522";
642+
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13971,7 +13971,7 @@ __DEV__ &&
1397113971
);
1397213972
markRootUpdated(root, lane);
1397313973
if (
13974-
0 !== (executionContext & RenderContext) &&
13974+
(executionContext & RenderContext) !== NoContext &&
1397513975
root === workInProgressRoot
1397613976
) {
1397713977
if (isRendering)
@@ -19080,10 +19080,10 @@ __DEV__ &&
1908019080
(function () {
1908119081
var internals = {
1908219082
bundleType: 1,
19083-
version: "19.2.0-www-classic-3e9db65f-20250522",
19083+
version: "19.2.0-www-classic-bfaeb4a4-20250522",
1908419084
rendererPackageName: "react-art",
1908519085
currentDispatcherRef: ReactSharedInternals,
19086-
reconcilerVersion: "19.2.0-www-classic-3e9db65f-20250522"
19086+
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
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-3e9db65f-20250522";
19120+
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13789,7 +13789,7 @@ __DEV__ &&
1378913789
);
1379013790
markRootUpdated(root, lane);
1379113791
if (
13792-
0 !== (executionContext & RenderContext) &&
13792+
(executionContext & RenderContext) !== NoContext &&
1379313793
root === workInProgressRoot
1379413794
) {
1379513795
if (isRendering)
@@ -18852,10 +18852,10 @@ __DEV__ &&
1885218852
(function () {
1885318853
var internals = {
1885418854
bundleType: 1,
18855-
version: "19.2.0-www-modern-3e9db65f-20250522",
18855+
version: "19.2.0-www-modern-bfaeb4a4-20250522",
1885618856
rendererPackageName: "react-art",
1885718857
currentDispatcherRef: ReactSharedInternals,
18858-
reconcilerVersion: "19.2.0-www-modern-3e9db65f-20250522"
18858+
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
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-3e9db65f-20250522";
18892+
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
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-3e9db65f-20250522",
11395+
version: "19.2.0-www-classic-bfaeb4a4-20250522",
1139611396
rendererPackageName: "react-art",
1139711397
currentDispatcherRef: ReactSharedInternals,
11398-
reconcilerVersion: "19.2.0-www-classic-3e9db65f-20250522"
11398+
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
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-3e9db65f-20250522";
11424+
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";

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-3e9db65f-20250522",
11107+
version: "19.2.0-www-modern-bfaeb4a4-20250522",
1110811108
rendererPackageName: "react-art",
1110911109
currentDispatcherRef: ReactSharedInternals,
11110-
reconcilerVersion: "19.2.0-www-modern-3e9db65f-20250522"
11110+
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
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-3e9db65f-20250522";
11136+
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17877,7 +17877,7 @@ __DEV__ &&
1787717877
);
1787817878
markRootUpdated(root, lane);
1787917879
if (
17880-
0 !== (executionContext & RenderContext) &&
17880+
(executionContext & RenderContext) !== NoContext &&
1788117881
root === workInProgressRoot
1788217882
) {
1788317883
if (isRendering)
@@ -31452,11 +31452,11 @@ __DEV__ &&
3145231452
return_targetInst = null;
3145331453
(function () {
3145431454
var isomorphicReactPackageVersion = React.version;
31455-
if ("19.2.0-www-classic-3e9db65f-20250522" !== isomorphicReactPackageVersion)
31455+
if ("19.2.0-www-classic-bfaeb4a4-20250522" !== 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-3e9db65f-20250522\nLearn more: https://react.dev/warnings/version-mismatch")
31459+
"\n - react-dom: 19.2.0-www-classic-bfaeb4a4-20250522\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-3e9db65f-20250522",
31502+
version: "19.2.0-www-classic-bfaeb4a4-20250522",
3150331503
rendererPackageName: "react-dom",
3150431504
currentDispatcherRef: ReactSharedInternals,
31505-
reconcilerVersion: "19.2.0-www-classic-3e9db65f-20250522"
31505+
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
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-3e9db65f-20250522";
32105+
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17676,7 +17676,7 @@ __DEV__ &&
1767617676
);
1767717677
markRootUpdated(root, lane);
1767817678
if (
17679-
0 !== (executionContext & RenderContext) &&
17679+
(executionContext & RenderContext) !== NoContext &&
1768017680
root === workInProgressRoot
1768117681
) {
1768217682
if (isRendering)
@@ -31238,11 +31238,11 @@ __DEV__ &&
3123831238
return_targetInst = null;
3123931239
(function () {
3124031240
var isomorphicReactPackageVersion = React.version;
31241-
if ("19.2.0-www-modern-3e9db65f-20250522" !== isomorphicReactPackageVersion)
31241+
if ("19.2.0-www-modern-bfaeb4a4-20250522" !== 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-3e9db65f-20250522\nLearn more: https://react.dev/warnings/version-mismatch")
31245+
"\n - react-dom: 19.2.0-www-modern-bfaeb4a4-20250522\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-3e9db65f-20250522",
31288+
version: "19.2.0-www-modern-bfaeb4a4-20250522",
3128931289
rendererPackageName: "react-dom",
3129031290
currentDispatcherRef: ReactSharedInternals,
31291-
reconcilerVersion: "19.2.0-www-modern-3e9db65f-20250522"
31291+
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
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-3e9db65f-20250522";
31891+
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
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-3e9db65f-20250522" !==
19569+
"19.2.0-www-classic-bfaeb4a4-20250522" !==
1957019570
isomorphicReactPackageVersion$jscomp$inline_2083
1957119571
)
1957219572
throw Error(
1957319573
formatProdErrorMessage(
1957419574
527,
1957519575
isomorphicReactPackageVersion$jscomp$inline_2083,
19576-
"19.2.0-www-classic-3e9db65f-20250522"
19576+
"19.2.0-www-classic-bfaeb4a4-20250522"
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-3e9db65f-20250522",
19594+
version: "19.2.0-www-classic-bfaeb4a4-20250522",
1959519595
rendererPackageName: "react-dom",
1959619596
currentDispatcherRef: ReactSharedInternals,
19597-
reconcilerVersion: "19.2.0-www-classic-3e9db65f-20250522"
19597+
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
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-3e9db65f-20250522";
20009+
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";

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-3e9db65f-20250522" !==
19298+
"19.2.0-www-modern-bfaeb4a4-20250522" !==
1929919299
isomorphicReactPackageVersion$jscomp$inline_2073
1930019300
)
1930119301
throw Error(
1930219302
formatProdErrorMessage(
1930319303
527,
1930419304
isomorphicReactPackageVersion$jscomp$inline_2073,
19305-
"19.2.0-www-modern-3e9db65f-20250522"
19305+
"19.2.0-www-modern-bfaeb4a4-20250522"
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-3e9db65f-20250522",
19323+
version: "19.2.0-www-modern-bfaeb4a4-20250522",
1932419324
rendererPackageName: "react-dom",
1932519325
currentDispatcherRef: ReactSharedInternals,
19326-
reconcilerVersion: "19.2.0-www-modern-3e9db65f-20250522"
19326+
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
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-3e9db65f-20250522";
19738+
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";

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-3e9db65f-20250522" !==
21551+
"19.2.0-www-classic-bfaeb4a4-20250522" !==
2155221552
isomorphicReactPackageVersion$jscomp$inline_2327
2155321553
)
2155421554
throw Error(
2155521555
formatProdErrorMessage(
2155621556
527,
2155721557
isomorphicReactPackageVersion$jscomp$inline_2327,
21558-
"19.2.0-www-classic-3e9db65f-20250522"
21558+
"19.2.0-www-classic-bfaeb4a4-20250522"
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-3e9db65f-20250522",
21576+
version: "19.2.0-www-classic-bfaeb4a4-20250522",
2157721577
rendererPackageName: "react-dom",
2157821578
currentDispatcherRef: ReactSharedInternals,
21579-
reconcilerVersion: "19.2.0-www-classic-3e9db65f-20250522"
21579+
reconcilerVersion: "19.2.0-www-classic-bfaeb4a4-20250522"
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-3e9db65f-20250522";
21994+
exports.version = "19.2.0-www-classic-bfaeb4a4-20250522";
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-3e9db65f-20250522" !==
21349+
"19.2.0-www-modern-bfaeb4a4-20250522" !==
2135021350
isomorphicReactPackageVersion$jscomp$inline_2317
2135121351
)
2135221352
throw Error(
2135321353
formatProdErrorMessage(
2135421354
527,
2135521355
isomorphicReactPackageVersion$jscomp$inline_2317,
21356-
"19.2.0-www-modern-3e9db65f-20250522"
21356+
"19.2.0-www-modern-bfaeb4a4-20250522"
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-3e9db65f-20250522",
21374+
version: "19.2.0-www-modern-bfaeb4a4-20250522",
2137521375
rendererPackageName: "react-dom",
2137621376
currentDispatcherRef: ReactSharedInternals,
21377-
reconcilerVersion: "19.2.0-www-modern-3e9db65f-20250522"
21377+
reconcilerVersion: "19.2.0-www-modern-bfaeb4a4-20250522"
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-3e9db65f-20250522";
21792+
exports.version = "19.2.0-www-modern-bfaeb4a4-20250522";
2179321793
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2179421794
"function" ===
2179521795
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)