Skip to content

Commit 31e9c9e

Browse files
committed
Dedupe legacy context warnings (#30299)
Similar to other warnings about legacy APIs, only raise a warning once per component. DiffTrain build for [39e69dc](39e69dc)
1 parent 5f6d91c commit 31e9c9e

35 files changed

+128
-92
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b73dcdc04ffa2dd9f2197d796388657d64ad53be
1+
39e69dc665ef6f6dd1f9fe2f63348afb09694eab
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b73dcdc04ffa2dd9f2197d796388657d64ad53be
1+
39e69dc665ef6f6dd1f9fe2f63348afb09694eab

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1998,7 +1998,7 @@ __DEV__ &&
19981998
exports.useTransition = function () {
19991999
return resolveDispatcher().useTransition();
20002000
};
2001-
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
2001+
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
20022002
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
20032003
"function" ===
20042004
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
@@ -1978,7 +1978,7 @@ __DEV__ &&
19781978
exports.useTransition = function () {
19791979
return resolveDispatcher().useTransition();
19801980
};
1981-
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
1981+
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
19821982
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
19831983
"function" ===
19841984
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
@@ -669,4 +669,4 @@ exports.useSyncExternalStore = function (
669669
exports.useTransition = function () {
670670
return ReactSharedInternals.H.useTransition();
671671
};
672-
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
672+
exports.version = "19.0.0-www-classic-39e69dc665-20240709";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,4 +669,4 @@ exports.useSyncExternalStore = function (
669669
exports.useTransition = function () {
670670
return ReactSharedInternals.H.useTransition();
671671
};
672-
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
672+
exports.version = "19.0.0-www-modern-39e69dc665-20240709";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ exports.useSyncExternalStore = function (
673673
exports.useTransition = function () {
674674
return ReactSharedInternals.H.useTransition();
675675
};
676-
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
676+
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
677677
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
678678
"function" ===
679679
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
@@ -673,7 +673,7 @@ exports.useSyncExternalStore = function (
673673
exports.useTransition = function () {
674674
return ReactSharedInternals.H.useTransition();
675675
};
676-
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
676+
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
677677
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
678678
"function" ===
679679
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16937,14 +16937,14 @@ __DEV__ &&
1693716937
scheduleRoot: scheduleRoot,
1693816938
setRefreshHandler: setRefreshHandler,
1693916939
getCurrentFiber: getCurrentFiberForDevTools,
16940-
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
16940+
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
1694116941
});
1694216942
})({
1694316943
findFiberByHostInstance: function () {
1694416944
return null;
1694516945
},
1694616946
bundleType: 1,
16947-
version: "19.0.0-www-classic-b73dcdc04f-20240709",
16947+
version: "19.0.0-www-classic-39e69dc665-20240709",
1694816948
rendererPackageName: "react-art"
1694916949
});
1695016950
var ClippingRectangle = TYPES.CLIPPING_RECTANGLE,

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

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6460,15 +6460,19 @@ __DEV__ &&
64606460
state
64616461
);
64626462
Component.childContextTypes &&
6463+
!didWarnAboutChildContextTypes.has(Component) &&
6464+
(didWarnAboutChildContextTypes.add(Component),
64636465
error$jscomp$0(
64646466
"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead.",
64656467
state
6466-
);
6468+
));
64676469
Component.contextTypes &&
6470+
!didWarnAboutContextTypes.has(Component) &&
6471+
(didWarnAboutContextTypes.add(Component),
64686472
error$jscomp$0(
64696473
"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead.",
64706474
state
6471-
);
6475+
));
64726476
"function" === typeof _instance.componentShouldUpdate &&
64736477
error$jscomp$0(
64746478
"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",
@@ -15847,6 +15851,8 @@ __DEV__ &&
1584715851
var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
1584815852
var didWarnAboutDirectlyAssigningPropsToState = new Set();
1584915853
var didWarnAboutUndefinedDerivedState = new Set();
15854+
var didWarnAboutContextTypes = new Set();
15855+
var didWarnAboutChildContextTypes = new Set();
1585015856
var didWarnAboutInvalidateContextType = new Set();
1585115857
var didWarnOnInvalidCallback = new Set();
1585215858
Object.freeze(fakeInternalInstance);
@@ -16367,14 +16373,14 @@ __DEV__ &&
1636716373
scheduleRoot: scheduleRoot,
1636816374
setRefreshHandler: setRefreshHandler,
1636916375
getCurrentFiber: getCurrentFiberForDevTools,
16370-
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
16376+
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
1637116377
});
1637216378
})({
1637316379
findFiberByHostInstance: function () {
1637416380
return null;
1637516381
},
1637616382
bundleType: 1,
16377-
version: "19.0.0-www-modern-b73dcdc04f-20240709",
16383+
version: "19.0.0-www-modern-39e69dc665-20240709",
1637816384
rendererPackageName: "react-art"
1637916385
});
1638016386
var ClippingRectangle = TYPES.CLIPPING_RECTANGLE,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10718,7 +10718,7 @@ var slice = Array.prototype.slice,
1071810718
return null;
1071910719
},
1072010720
bundleType: 0,
10721-
version: "19.0.0-www-classic-b73dcdc04f-20240709",
10721+
version: "19.0.0-www-classic-39e69dc665-20240709",
1072210722
rendererPackageName: "react-art"
1072310723
};
1072410724
var internals$jscomp$inline_1386 = {
@@ -10749,7 +10749,7 @@ var internals$jscomp$inline_1386 = {
1074910749
scheduleRoot: null,
1075010750
setRefreshHandler: null,
1075110751
getCurrentFiber: null,
10752-
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
10752+
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
1075310753
};
1075410754
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1075510755
var hook$jscomp$inline_1387 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10171,7 +10171,7 @@ var slice = Array.prototype.slice,
1017110171
return null;
1017210172
},
1017310173
bundleType: 0,
10174-
version: "19.0.0-www-modern-b73dcdc04f-20240709",
10174+
version: "19.0.0-www-modern-39e69dc665-20240709",
1017510175
rendererPackageName: "react-art"
1017610176
};
1017710177
var internals$jscomp$inline_1372 = {
@@ -10202,7 +10202,7 @@ var internals$jscomp$inline_1372 = {
1020210202
scheduleRoot: null,
1020310203
setRefreshHandler: null,
1020410204
getCurrentFiber: null,
10205-
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
10205+
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
1020610206
};
1020710207
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1020810208
var hook$jscomp$inline_1373 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27373,11 +27373,11 @@ __DEV__ &&
2737327373
: flushSyncErrorInBuildsThatSupportLegacyMode;
2737427374
(function () {
2737527375
var isomorphicReactPackageVersion = React.version;
27376-
if ("19.0.0-www-classic-b73dcdc04f-20240709" !== isomorphicReactPackageVersion)
27376+
if ("19.0.0-www-classic-39e69dc665-20240709" !== isomorphicReactPackageVersion)
2737727377
throw Error(
2737827378
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2737927379
(isomorphicReactPackageVersion +
27380-
"\n - react-dom: 19.0.0-www-classic-b73dcdc04f-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
27380+
"\n - react-dom: 19.0.0-www-classic-39e69dc665-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
2738127381
);
2738227382
})();
2738327383
("function" === typeof Map &&
@@ -27443,12 +27443,12 @@ __DEV__ &&
2744327443
scheduleRoot: scheduleRoot,
2744427444
setRefreshHandler: setRefreshHandler,
2744527445
getCurrentFiber: getCurrentFiberForDevTools,
27446-
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
27446+
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
2744727447
});
2744827448
})({
2744927449
findFiberByHostInstance: getClosestInstanceFromNode,
2745027450
bundleType: 1,
27451-
version: "19.0.0-www-classic-b73dcdc04f-20240709",
27451+
version: "19.0.0-www-classic-39e69dc665-20240709",
2745227452
rendererPackageName: "react-dom"
2745327453
}) &&
2745427454
canUseDOM &&
@@ -28091,7 +28091,7 @@ __DEV__ &&
2809128091
exports.useFormStatus = function () {
2809228092
return resolveDispatcher().useHostTransitionStatus();
2809328093
};
28094-
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
28094+
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
2809528095
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2809628096
"function" ===
2809728097
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8293,15 +8293,19 @@ __DEV__ &&
82938293
state
82948294
);
82958295
Component.childContextTypes &&
8296+
!didWarnAboutChildContextTypes.has(Component) &&
8297+
(didWarnAboutChildContextTypes.add(Component),
82968298
error$jscomp$0(
82978299
"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead.",
82988300
state
8299-
);
8301+
));
83008302
Component.contextTypes &&
8303+
!didWarnAboutContextTypes.has(Component) &&
8304+
(didWarnAboutContextTypes.add(Component),
83018305
error$jscomp$0(
83028306
"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead.",
83038307
state
8304-
);
8308+
));
83058309
"function" === typeof _instance.componentShouldUpdate &&
83068310
error$jscomp$0(
83078311
"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",
@@ -25429,6 +25433,8 @@ __DEV__ &&
2542925433
var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
2543025434
var didWarnAboutDirectlyAssigningPropsToState = new Set();
2543125435
var didWarnAboutUndefinedDerivedState = new Set();
25436+
var didWarnAboutContextTypes = new Set();
25437+
var didWarnAboutChildContextTypes = new Set();
2543225438
var didWarnAboutInvalidateContextType = new Set();
2543325439
var didWarnOnInvalidCallback = new Set();
2543425440
Object.freeze(fakeInternalInstance);
@@ -26520,11 +26526,11 @@ __DEV__ &&
2652026526
return_targetInst = null;
2652126527
(function () {
2652226528
var isomorphicReactPackageVersion = React.version;
26523-
if ("19.0.0-www-modern-b73dcdc04f-20240709" !== isomorphicReactPackageVersion)
26529+
if ("19.0.0-www-modern-39e69dc665-20240709" !== isomorphicReactPackageVersion)
2652426530
throw Error(
2652526531
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2652626532
(isomorphicReactPackageVersion +
26527-
"\n - react-dom: 19.0.0-www-modern-b73dcdc04f-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
26533+
"\n - react-dom: 19.0.0-www-modern-39e69dc665-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
2652826534
);
2652926535
})();
2653026536
("function" === typeof Map &&
@@ -26589,12 +26595,12 @@ __DEV__ &&
2658926595
scheduleRoot: scheduleRoot,
2659026596
setRefreshHandler: setRefreshHandler,
2659126597
getCurrentFiber: getCurrentFiberForDevTools,
26592-
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
26598+
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
2659326599
});
2659426600
})({
2659526601
findFiberByHostInstance: getClosestInstanceFromNode,
2659626602
bundleType: 1,
26597-
version: "19.0.0-www-modern-b73dcdc04f-20240709",
26603+
version: "19.0.0-www-modern-39e69dc665-20240709",
2659826604
rendererPackageName: "react-dom"
2659926605
}) &&
2660026606
canUseDOM &&
@@ -27190,7 +27196,7 @@ __DEV__ &&
2719027196
exports.useFormStatus = function () {
2719127197
return resolveDispatcher().useHostTransitionStatus();
2719227198
};
27193-
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
27199+
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
2719427200
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2719527201
"function" ===
2719627202
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
@@ -17163,14 +17163,14 @@ function getCrossOriginStringAs(as, input) {
1716317163
}
1716417164
var isomorphicReactPackageVersion$jscomp$inline_1769 = React.version;
1716517165
if (
17166-
"19.0.0-www-classic-b73dcdc04f-20240709" !==
17166+
"19.0.0-www-classic-39e69dc665-20240709" !==
1716717167
isomorphicReactPackageVersion$jscomp$inline_1769
1716817168
)
1716917169
throw Error(
1717017170
formatProdErrorMessage(
1717117171
527,
1717217172
isomorphicReactPackageVersion$jscomp$inline_1769,
17173-
"19.0.0-www-classic-b73dcdc04f-20240709"
17173+
"19.0.0-www-classic-39e69dc665-20240709"
1717417174
)
1717517175
);
1717617176
function flushSyncFromReconciler(fn) {
@@ -17216,7 +17216,7 @@ Internals.Events = [
1721617216
var devToolsConfig$jscomp$inline_1776 = {
1721717217
findFiberByHostInstance: getClosestInstanceFromNode,
1721817218
bundleType: 0,
17219-
version: "19.0.0-www-classic-b73dcdc04f-20240709",
17219+
version: "19.0.0-www-classic-39e69dc665-20240709",
1722017220
rendererPackageName: "react-dom"
1722117221
};
1722217222
var internals$jscomp$inline_2220 = {
@@ -17246,7 +17246,7 @@ var internals$jscomp$inline_2220 = {
1724617246
scheduleRoot: null,
1724717247
setRefreshHandler: null,
1724817248
getCurrentFiber: null,
17249-
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
17249+
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
1725017250
};
1725117251
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1725217252
var hook$jscomp$inline_2221 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17710,4 +17710,4 @@ exports.useFormState = function (action, initialState, permalink) {
1771017710
exports.useFormStatus = function () {
1771117711
return ReactSharedInternals.H.useHostTransitionStatus();
1771217712
};
17713-
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
17713+
exports.version = "19.0.0-www-classic-39e69dc665-20240709";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16478,14 +16478,14 @@ function getCrossOriginStringAs(as, input) {
1647816478
}
1647916479
var isomorphicReactPackageVersion$jscomp$inline_1740 = React.version;
1648016480
if (
16481-
"19.0.0-www-modern-b73dcdc04f-20240709" !==
16481+
"19.0.0-www-modern-39e69dc665-20240709" !==
1648216482
isomorphicReactPackageVersion$jscomp$inline_1740
1648316483
)
1648416484
throw Error(
1648516485
formatProdErrorMessage(
1648616486
527,
1648716487
isomorphicReactPackageVersion$jscomp$inline_1740,
16488-
"19.0.0-www-modern-b73dcdc04f-20240709"
16488+
"19.0.0-www-modern-39e69dc665-20240709"
1648916489
)
1649016490
);
1649116491
Internals.findDOMNode = function (componentOrElement) {
@@ -16504,7 +16504,7 @@ Internals.Events = [
1650416504
var devToolsConfig$jscomp$inline_1742 = {
1650516505
findFiberByHostInstance: getClosestInstanceFromNode,
1650616506
bundleType: 0,
16507-
version: "19.0.0-www-modern-b73dcdc04f-20240709",
16507+
version: "19.0.0-www-modern-39e69dc665-20240709",
1650816508
rendererPackageName: "react-dom"
1650916509
};
1651016510
var internals$jscomp$inline_2211 = {
@@ -16534,7 +16534,7 @@ var internals$jscomp$inline_2211 = {
1653416534
scheduleRoot: null,
1653516535
setRefreshHandler: null,
1653616536
getCurrentFiber: null,
16537-
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
16537+
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
1653816538
};
1653916539
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1654016540
var hook$jscomp$inline_2212 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -16905,4 +16905,4 @@ exports.useFormState = function (action, initialState, permalink) {
1690516905
exports.useFormStatus = function () {
1690616906
return ReactSharedInternals.H.useHostTransitionStatus();
1690716907
};
16908-
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
16908+
exports.version = "19.0.0-www-modern-39e69dc665-20240709";

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17930,14 +17930,14 @@ function getCrossOriginStringAs(as, input) {
1793017930
}
1793117931
var isomorphicReactPackageVersion$jscomp$inline_1856 = React.version;
1793217932
if (
17933-
"19.0.0-www-classic-b73dcdc04f-20240709" !==
17933+
"19.0.0-www-classic-39e69dc665-20240709" !==
1793417934
isomorphicReactPackageVersion$jscomp$inline_1856
1793517935
)
1793617936
throw Error(
1793717937
formatProdErrorMessage(
1793817938
527,
1793917939
isomorphicReactPackageVersion$jscomp$inline_1856,
17940-
"19.0.0-www-classic-b73dcdc04f-20240709"
17940+
"19.0.0-www-classic-39e69dc665-20240709"
1794117941
)
1794217942
);
1794317943
function flushSyncFromReconciler(fn) {
@@ -17983,7 +17983,7 @@ Internals.Events = [
1798317983
var devToolsConfig$jscomp$inline_1863 = {
1798417984
findFiberByHostInstance: getClosestInstanceFromNode,
1798517985
bundleType: 0,
17986-
version: "19.0.0-www-classic-b73dcdc04f-20240709",
17986+
version: "19.0.0-www-classic-39e69dc665-20240709",
1798717987
rendererPackageName: "react-dom"
1798817988
};
1798917989
(function (internals) {
@@ -18027,7 +18027,7 @@ var devToolsConfig$jscomp$inline_1863 = {
1802718027
scheduleRoot: null,
1802818028
setRefreshHandler: null,
1802918029
getCurrentFiber: null,
18030-
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
18030+
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
1803118031
});
1803218032
function ReactDOMRoot(internalRoot) {
1803318033
this._internalRoot = internalRoot;
@@ -18478,7 +18478,7 @@ exports.useFormState = function (action, initialState, permalink) {
1847818478
exports.useFormStatus = function () {
1847918479
return ReactSharedInternals.H.useHostTransitionStatus();
1848018480
};
18481-
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
18481+
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
1848218482
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1848318483
"function" ===
1848418484
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)