Skip to content

Commit c506d49

Browse files
committed
fix[eslint-plugin-react-hooks]: Fix error when callback argument is an identifier with an as expression (#31119)
DiffTrain build for [eaf2d5c](eaf2d5c)
1 parent 3a9e9ff commit c506d49

35 files changed

+109
-98
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
047d95e85f0f0cfa6085b2e355e052a3c34ae24d
1+
eaf2d5c670c84124618977156d81946435922eb3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
047d95e85f0f0cfa6085b2e355e052a3c34ae24d
1+
eaf2d5c670c84124618977156d81946435922eb3

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,7 @@ __DEV__ &&
18371837
exports.useTransition = function () {
18381838
return resolveDispatcher().useTransition();
18391839
};
1840-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
1840+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";
18411841
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
18421842
"function" ===
18431843
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
@@ -1837,7 +1837,7 @@ __DEV__ &&
18371837
exports.useTransition = function () {
18381838
return resolveDispatcher().useTransition();
18391839
};
1840-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
1840+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";
18411841
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
18421842
"function" ===
18431843
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
@@ -636,4 +636,4 @@ exports.useSyncExternalStore = function (
636636
exports.useTransition = function () {
637637
return ReactSharedInternals.H.useTransition();
638638
};
639-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
639+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,4 +636,4 @@ exports.useSyncExternalStore = function (
636636
exports.useTransition = function () {
637637
return ReactSharedInternals.H.useTransition();
638638
};
639-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
639+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ exports.useSyncExternalStore = function (
640640
exports.useTransition = function () {
641641
return ReactSharedInternals.H.useTransition();
642642
};
643-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
643+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";
644644
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
645645
"function" ===
646646
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
@@ -640,7 +640,7 @@ exports.useSyncExternalStore = function (
640640
exports.useTransition = function () {
641641
return ReactSharedInternals.H.useTransition();
642642
};
643-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
643+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";
644644
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
645645
"function" ===
646646
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
@@ -17113,11 +17113,11 @@ __DEV__ &&
1711317113
(function () {
1711417114
var internals = {
1711517115
bundleType: 1,
17116-
version: "19.0.0-www-classic-047d95e8-20241118",
17116+
version: "19.0.0-www-classic-eaf2d5c6-20241119",
1711717117
rendererPackageName: "react-art",
1711817118
currentDispatcherRef: ReactSharedInternals,
1711917119
findFiberByHostInstance: getInstanceFromNode,
17120-
reconcilerVersion: "19.0.0-www-classic-047d95e8-20241118"
17120+
reconcilerVersion: "19.0.0-www-classic-eaf2d5c6-20241119"
1712117121
};
1712217122
internals.overrideHookState = overrideHookState;
1712317123
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -17151,7 +17151,7 @@ __DEV__ &&
1715117151
exports.Shape = Shape;
1715217152
exports.Surface = Surface;
1715317153
exports.Text = Text;
17154-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
17154+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";
1715517155
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1715617156
"function" ===
1715717157
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
@@ -16876,11 +16876,11 @@ __DEV__ &&
1687616876
(function () {
1687716877
var internals = {
1687816878
bundleType: 1,
16879-
version: "19.0.0-www-modern-047d95e8-20241118",
16879+
version: "19.0.0-www-modern-eaf2d5c6-20241119",
1688016880
rendererPackageName: "react-art",
1688116881
currentDispatcherRef: ReactSharedInternals,
1688216882
findFiberByHostInstance: getInstanceFromNode,
16883-
reconcilerVersion: "19.0.0-www-modern-047d95e8-20241118"
16883+
reconcilerVersion: "19.0.0-www-modern-eaf2d5c6-20241119"
1688416884
};
1688516885
internals.overrideHookState = overrideHookState;
1688616886
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -16914,7 +16914,7 @@ __DEV__ &&
1691416914
exports.Shape = Shape;
1691516915
exports.Surface = Surface;
1691616916
exports.Text = Text;
16917-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
16917+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";
1691816918
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1691916919
"function" ===
1692016920
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
@@ -10813,13 +10813,13 @@ var slice = Array.prototype.slice,
1081310813
})(React.Component);
1081410814
var internals$jscomp$inline_1509 = {
1081510815
bundleType: 0,
10816-
version: "19.0.0-www-classic-047d95e8-20241118",
10816+
version: "19.0.0-www-classic-eaf2d5c6-20241119",
1081710817
rendererPackageName: "react-art",
1081810818
currentDispatcherRef: ReactSharedInternals,
1081910819
findFiberByHostInstance: function () {
1082010820
return null;
1082110821
},
10822-
reconcilerVersion: "19.0.0-www-classic-047d95e8-20241118"
10822+
reconcilerVersion: "19.0.0-www-classic-eaf2d5c6-20241119"
1082310823
};
1082410824
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1082510825
var hook$jscomp$inline_1510 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10845,4 +10845,4 @@ exports.RadialGradient = RadialGradient;
1084510845
exports.Shape = TYPES.SHAPE;
1084610846
exports.Surface = Surface;
1084710847
exports.Text = Text;
10848-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
10848+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10529,13 +10529,13 @@ var slice = Array.prototype.slice,
1052910529
})(React.Component);
1053010530
var internals$jscomp$inline_1488 = {
1053110531
bundleType: 0,
10532-
version: "19.0.0-www-modern-047d95e8-20241118",
10532+
version: "19.0.0-www-modern-eaf2d5c6-20241119",
1053310533
rendererPackageName: "react-art",
1053410534
currentDispatcherRef: ReactSharedInternals,
1053510535
findFiberByHostInstance: function () {
1053610536
return null;
1053710537
},
10538-
reconcilerVersion: "19.0.0-www-modern-047d95e8-20241118"
10538+
reconcilerVersion: "19.0.0-www-modern-eaf2d5c6-20241119"
1053910539
};
1054010540
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1054110541
var hook$jscomp$inline_1489 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10561,4 +10561,4 @@ exports.RadialGradient = RadialGradient;
1056110561
exports.Shape = TYPES.SHAPE;
1056210562
exports.Surface = Surface;
1056310563
exports.Text = Text;
10564-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
10564+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27531,11 +27531,11 @@ __DEV__ &&
2753127531
return_targetInst = null;
2753227532
(function () {
2753327533
var isomorphicReactPackageVersion = React.version;
27534-
if ("19.0.0-www-classic-047d95e8-20241118" !== isomorphicReactPackageVersion)
27534+
if ("19.0.0-www-classic-eaf2d5c6-20241119" !== isomorphicReactPackageVersion)
2753527535
throw Error(
2753627536
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2753727537
(isomorphicReactPackageVersion +
27538-
"\n - react-dom: 19.0.0-www-classic-047d95e8-20241118\nLearn more: https://react.dev/warnings/version-mismatch")
27538+
"\n - react-dom: 19.0.0-www-classic-eaf2d5c6-20241119\nLearn more: https://react.dev/warnings/version-mismatch")
2753927539
);
2754027540
})();
2754127541
("function" === typeof Map &&
@@ -27578,11 +27578,11 @@ __DEV__ &&
2757827578
!(function () {
2757927579
var internals = {
2758027580
bundleType: 1,
27581-
version: "19.0.0-www-classic-047d95e8-20241118",
27581+
version: "19.0.0-www-classic-eaf2d5c6-20241119",
2758227582
rendererPackageName: "react-dom",
2758327583
currentDispatcherRef: ReactSharedInternals,
2758427584
findFiberByHostInstance: getClosestInstanceFromNode,
27585-
reconcilerVersion: "19.0.0-www-classic-047d95e8-20241118"
27585+
reconcilerVersion: "19.0.0-www-classic-eaf2d5c6-20241119"
2758627586
};
2758727587
internals.overrideHookState = overrideHookState;
2758827588
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -28187,7 +28187,7 @@ __DEV__ &&
2818728187
exports.useFormStatus = function () {
2818828188
return resolveDispatcher().useHostTransitionStatus();
2818928189
};
28190-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
28190+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";
2819128191
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2819228192
"function" ===
2819328193
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
@@ -27310,11 +27310,11 @@ __DEV__ &&
2731027310
return_targetInst = null;
2731127311
(function () {
2731227312
var isomorphicReactPackageVersion = React.version;
27313-
if ("19.0.0-www-modern-047d95e8-20241118" !== isomorphicReactPackageVersion)
27313+
if ("19.0.0-www-modern-eaf2d5c6-20241119" !== isomorphicReactPackageVersion)
2731427314
throw Error(
2731527315
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2731627316
(isomorphicReactPackageVersion +
27317-
"\n - react-dom: 19.0.0-www-modern-047d95e8-20241118\nLearn more: https://react.dev/warnings/version-mismatch")
27317+
"\n - react-dom: 19.0.0-www-modern-eaf2d5c6-20241119\nLearn more: https://react.dev/warnings/version-mismatch")
2731827318
);
2731927319
})();
2732027320
("function" === typeof Map &&
@@ -27357,11 +27357,11 @@ __DEV__ &&
2735727357
!(function () {
2735827358
var internals = {
2735927359
bundleType: 1,
27360-
version: "19.0.0-www-modern-047d95e8-20241118",
27360+
version: "19.0.0-www-modern-eaf2d5c6-20241119",
2736127361
rendererPackageName: "react-dom",
2736227362
currentDispatcherRef: ReactSharedInternals,
2736327363
findFiberByHostInstance: getClosestInstanceFromNode,
27364-
reconcilerVersion: "19.0.0-www-modern-047d95e8-20241118"
27364+
reconcilerVersion: "19.0.0-www-modern-eaf2d5c6-20241119"
2736527365
};
2736627366
internals.overrideHookState = overrideHookState;
2736727367
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -27966,7 +27966,7 @@ __DEV__ &&
2796627966
exports.useFormStatus = function () {
2796727967
return resolveDispatcher().useHostTransitionStatus();
2796827968
};
27969-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
27969+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";
2797027970
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2797127971
"function" ===
2797227972
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
@@ -17240,14 +17240,14 @@ function getCrossOriginStringAs(as, input) {
1724017240
}
1724117241
var isomorphicReactPackageVersion$jscomp$inline_1778 = React.version;
1724217242
if (
17243-
"19.0.0-www-classic-047d95e8-20241118" !==
17243+
"19.0.0-www-classic-eaf2d5c6-20241119" !==
1724417244
isomorphicReactPackageVersion$jscomp$inline_1778
1724517245
)
1724617246
throw Error(
1724717247
formatProdErrorMessage(
1724817248
527,
1724917249
isomorphicReactPackageVersion$jscomp$inline_1778,
17250-
"19.0.0-www-classic-047d95e8-20241118"
17250+
"19.0.0-www-classic-eaf2d5c6-20241119"
1725117251
)
1725217252
);
1725317253
Internals.findDOMNode = function (componentOrElement) {
@@ -17265,11 +17265,11 @@ Internals.Events = [
1726517265
];
1726617266
var internals$jscomp$inline_2322 = {
1726717267
bundleType: 0,
17268-
version: "19.0.0-www-classic-047d95e8-20241118",
17268+
version: "19.0.0-www-classic-eaf2d5c6-20241119",
1726917269
rendererPackageName: "react-dom",
1727017270
currentDispatcherRef: ReactSharedInternals,
1727117271
findFiberByHostInstance: getClosestInstanceFromNode,
17272-
reconcilerVersion: "19.0.0-www-classic-047d95e8-20241118"
17272+
reconcilerVersion: "19.0.0-www-classic-eaf2d5c6-20241119"
1727317273
};
1727417274
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1727517275
var hook$jscomp$inline_2323 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17632,4 +17632,4 @@ exports.useFormState = function (action, initialState, permalink) {
1763217632
exports.useFormStatus = function () {
1763317633
return ReactSharedInternals.H.useHostTransitionStatus();
1763417634
};
17635-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
17635+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16971,14 +16971,14 @@ function getCrossOriginStringAs(as, input) {
1697116971
}
1697216972
var isomorphicReactPackageVersion$jscomp$inline_1768 = React.version;
1697316973
if (
16974-
"19.0.0-www-modern-047d95e8-20241118" !==
16974+
"19.0.0-www-modern-eaf2d5c6-20241119" !==
1697516975
isomorphicReactPackageVersion$jscomp$inline_1768
1697616976
)
1697716977
throw Error(
1697816978
formatProdErrorMessage(
1697916979
527,
1698016980
isomorphicReactPackageVersion$jscomp$inline_1768,
16981-
"19.0.0-www-modern-047d95e8-20241118"
16981+
"19.0.0-www-modern-eaf2d5c6-20241119"
1698216982
)
1698316983
);
1698416984
Internals.findDOMNode = function (componentOrElement) {
@@ -16996,11 +16996,11 @@ Internals.Events = [
1699616996
];
1699716997
var internals$jscomp$inline_2304 = {
1699816998
bundleType: 0,
16999-
version: "19.0.0-www-modern-047d95e8-20241118",
16999+
version: "19.0.0-www-modern-eaf2d5c6-20241119",
1700017000
rendererPackageName: "react-dom",
1700117001
currentDispatcherRef: ReactSharedInternals,
1700217002
findFiberByHostInstance: getClosestInstanceFromNode,
17003-
reconcilerVersion: "19.0.0-www-modern-047d95e8-20241118"
17003+
reconcilerVersion: "19.0.0-www-modern-eaf2d5c6-20241119"
1700417004
};
1700517005
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1700617006
var hook$jscomp$inline_2305 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17363,4 +17363,4 @@ exports.useFormState = function (action, initialState, permalink) {
1736317363
exports.useFormStatus = function () {
1736417364
return ReactSharedInternals.H.useHostTransitionStatus();
1736517365
};
17366-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
17366+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17929,14 +17929,14 @@ function getCrossOriginStringAs(as, input) {
1792917929
}
1793017930
var isomorphicReactPackageVersion$jscomp$inline_1871 = React.version;
1793117931
if (
17932-
"19.0.0-www-classic-047d95e8-20241118" !==
17932+
"19.0.0-www-classic-eaf2d5c6-20241119" !==
1793317933
isomorphicReactPackageVersion$jscomp$inline_1871
1793417934
)
1793517935
throw Error(
1793617936
formatProdErrorMessage(
1793717937
527,
1793817938
isomorphicReactPackageVersion$jscomp$inline_1871,
17939-
"19.0.0-www-classic-047d95e8-20241118"
17939+
"19.0.0-www-classic-eaf2d5c6-20241119"
1794017940
)
1794117941
);
1794217942
Internals.findDOMNode = function (componentOrElement) {
@@ -17954,11 +17954,11 @@ Internals.Events = [
1795417954
];
1795517955
var internals$jscomp$inline_1873 = {
1795617956
bundleType: 0,
17957-
version: "19.0.0-www-classic-047d95e8-20241118",
17957+
version: "19.0.0-www-classic-eaf2d5c6-20241119",
1795817958
rendererPackageName: "react-dom",
1795917959
currentDispatcherRef: ReactSharedInternals,
1796017960
findFiberByHostInstance: getClosestInstanceFromNode,
17961-
reconcilerVersion: "19.0.0-www-classic-047d95e8-20241118"
17961+
reconcilerVersion: "19.0.0-www-classic-eaf2d5c6-20241119"
1796217962
};
1796317963
enableSchedulingProfiler &&
1796417964
((internals$jscomp$inline_1873.getLaneLabelMap = getLaneLabelMap),
@@ -18324,7 +18324,7 @@ exports.useFormState = function (action, initialState, permalink) {
1832418324
exports.useFormStatus = function () {
1832518325
return ReactSharedInternals.H.useHostTransitionStatus();
1832618326
};
18327-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
18327+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";
1832818328
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1832918329
"function" ===
1833018330
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
@@ -17659,14 +17659,14 @@ function getCrossOriginStringAs(as, input) {
1765917659
}
1766017660
var isomorphicReactPackageVersion$jscomp$inline_1861 = React.version;
1766117661
if (
17662-
"19.0.0-www-modern-047d95e8-20241118" !==
17662+
"19.0.0-www-modern-eaf2d5c6-20241119" !==
1766317663
isomorphicReactPackageVersion$jscomp$inline_1861
1766417664
)
1766517665
throw Error(
1766617666
formatProdErrorMessage(
1766717667
527,
1766817668
isomorphicReactPackageVersion$jscomp$inline_1861,
17669-
"19.0.0-www-modern-047d95e8-20241118"
17669+
"19.0.0-www-modern-eaf2d5c6-20241119"
1767017670
)
1767117671
);
1767217672
Internals.findDOMNode = function (componentOrElement) {
@@ -17684,11 +17684,11 @@ Internals.Events = [
1768417684
];
1768517685
var internals$jscomp$inline_1863 = {
1768617686
bundleType: 0,
17687-
version: "19.0.0-www-modern-047d95e8-20241118",
17687+
version: "19.0.0-www-modern-eaf2d5c6-20241119",
1768817688
rendererPackageName: "react-dom",
1768917689
currentDispatcherRef: ReactSharedInternals,
1769017690
findFiberByHostInstance: getClosestInstanceFromNode,
17691-
reconcilerVersion: "19.0.0-www-modern-047d95e8-20241118"
17691+
reconcilerVersion: "19.0.0-www-modern-eaf2d5c6-20241119"
1769217692
};
1769317693
enableSchedulingProfiler &&
1769417694
((internals$jscomp$inline_1863.getLaneLabelMap = getLaneLabelMap),
@@ -18054,7 +18054,7 @@ exports.useFormState = function (action, initialState, permalink) {
1805418054
exports.useFormStatus = function () {
1805518055
return ReactSharedInternals.H.useHostTransitionStatus();
1805618056
};
18057-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
18057+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";
1805818058
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1805918059
"function" ===
1806018060
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8991,5 +8991,5 @@ __DEV__ &&
89918991
'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'
89928992
);
89938993
};
8994-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
8994+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";
89958995
})();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8809,5 +8809,5 @@ __DEV__ &&
88098809
'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'
88108810
);
88118811
};
8812-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
8812+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";
88138813
})();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5910,4 +5910,4 @@ exports.renderToString = function (children, options) {
59105910
'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'
59115911
);
59125912
};
5913-
exports.version = "19.0.0-www-classic-047d95e8-20241118";
5913+
exports.version = "19.0.0-www-classic-eaf2d5c6-20241119";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5822,4 +5822,4 @@ exports.renderToString = function (children, options) {
58225822
'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'
58235823
);
58245824
};
5825-
exports.version = "19.0.0-www-modern-047d95e8-20241118";
5825+
exports.version = "19.0.0-www-modern-eaf2d5c6-20241119";

0 commit comments

Comments
 (0)