Skip to content

Commit 0558177

Browse files
committed
Clean up findFiberByHostInstance from DevTools Hook (#31711)
The need for this was removed in #30831 Since the new DevTools version has been released for a while and we expect people to more or less auto-update. Future versions of React don't need this. Once we remove the remaining uses of `getInstanceFromNode` e.g. in the deprecated internal `findDOMNode`/`findNodeHandle` and the event system, we can completely remove the tagging of DOM nodes. DiffTrain build for [3b597c0](3b597c0)
1 parent e3aab58 commit 0558177

34 files changed

+96
-130
lines changed

compiled/facebook-www/REVISION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
de68d2f4a2403ad1ef46a3036ddc1f9080640588
1+
3b597c0576977773910c77e075cc6d6308decb04
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
de68d2f4a2403ad1ef46a3036ddc1f9080640588
1+
3b597c0576977773910c77e075cc6d6308decb04

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ __DEV__ &&
18411841
exports.useTransition = function () {
18421842
return resolveDispatcher().useTransition();
18431843
};
1844-
exports.version = "19.0.0-www-classic-de68d2f4-20241204";
1844+
exports.version = "19.0.0-www-classic-3b597c05-20241210";
18451845
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
18461846
"function" ===
18471847
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ __DEV__ &&
18411841
exports.useTransition = function () {
18421842
return resolveDispatcher().useTransition();
18431843
};
1844-
exports.version = "19.0.0-www-modern-de68d2f4-20241204";
1844+
exports.version = "19.0.0-www-modern-3b597c05-20241210";
18451845
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
18461846
"function" ===
18471847
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -634,4 +634,4 @@ exports.useSyncExternalStore = function (
634634
exports.useTransition = function () {
635635
return ReactSharedInternals.H.useTransition();
636636
};
637-
exports.version = "19.0.0-www-classic-de68d2f4-20241204";
637+
exports.version = "19.0.0-www-classic-3b597c05-20241210";

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -634,4 +634,4 @@ exports.useSyncExternalStore = function (
634634
exports.useTransition = function () {
635635
return ReactSharedInternals.H.useTransition();
636636
};
637-
exports.version = "19.0.0-www-modern-de68d2f4-20241204";
637+
exports.version = "19.0.0-www-modern-3b597c05-20241210";

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ exports.useSyncExternalStore = function (
638638
exports.useTransition = function () {
639639
return ReactSharedInternals.H.useTransition();
640640
};
641-
exports.version = "19.0.0-www-classic-de68d2f4-20241204";
641+
exports.version = "19.0.0-www-classic-3b597c05-20241210";
642642
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
643643
"function" ===
644644
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ exports.useSyncExternalStore = function (
638638
exports.useTransition = function () {
639639
return ReactSharedInternals.H.useTransition();
640640
};
641-
exports.version = "19.0.0-www-modern-de68d2f4-20241204";
641+
exports.version = "19.0.0-www-modern-3b597c05-20241210";
642642
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
643643
"function" ===
644644
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+3-7
Original file line numberDiff line numberDiff line change
@@ -1281,9 +1281,6 @@ __DEV__ &&
12811281
(null == props.visible || props.visible) && instance.show();
12821282
}
12831283
function unhideTextInstance() {}
1284-
function getInstanceFromNode() {
1285-
return null;
1286-
}
12871284
function createCursor(defaultValue) {
12881285
return { current: defaultValue };
12891286
}
@@ -17129,11 +17126,10 @@ __DEV__ &&
1712917126
(function () {
1713017127
var internals = {
1713117128
bundleType: 1,
17132-
version: "19.0.0-www-classic-de68d2f4-20241204",
17129+
version: "19.0.0-www-classic-3b597c05-20241210",
1713317130
rendererPackageName: "react-art",
1713417131
currentDispatcherRef: ReactSharedInternals,
17135-
findFiberByHostInstance: getInstanceFromNode,
17136-
reconcilerVersion: "19.0.0-www-classic-de68d2f4-20241204"
17132+
reconcilerVersion: "19.0.0-www-classic-3b597c05-20241210"
1713717133
};
1713817134
internals.overrideHookState = overrideHookState;
1713917135
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -17167,7 +17163,7 @@ __DEV__ &&
1716717163
exports.Shape = Shape;
1716817164
exports.Surface = Surface;
1716917165
exports.Text = Text;
17170-
exports.version = "19.0.0-www-classic-de68d2f4-20241204";
17166+
exports.version = "19.0.0-www-classic-3b597c05-20241210";
1717117167
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1717217168
"function" ===
1717317169
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+3-7
Original file line numberDiff line numberDiff line change
@@ -1267,9 +1267,6 @@ __DEV__ &&
12671267
(null == props.visible || props.visible) && instance.show();
12681268
}
12691269
function unhideTextInstance() {}
1270-
function getInstanceFromNode() {
1271-
return null;
1272-
}
12731270
function createCursor(defaultValue) {
12741271
return { current: defaultValue };
12751272
}
@@ -16892,11 +16889,10 @@ __DEV__ &&
1689216889
(function () {
1689316890
var internals = {
1689416891
bundleType: 1,
16895-
version: "19.0.0-www-modern-de68d2f4-20241204",
16892+
version: "19.0.0-www-modern-3b597c05-20241210",
1689616893
rendererPackageName: "react-art",
1689716894
currentDispatcherRef: ReactSharedInternals,
16898-
findFiberByHostInstance: getInstanceFromNode,
16899-
reconcilerVersion: "19.0.0-www-modern-de68d2f4-20241204"
16895+
reconcilerVersion: "19.0.0-www-modern-3b597c05-20241210"
1690016896
};
1690116897
internals.overrideHookState = overrideHookState;
1690216898
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -16930,7 +16926,7 @@ __DEV__ &&
1693016926
exports.Shape = Shape;
1693116927
exports.Surface = Surface;
1693216928
exports.Text = Text;
16933-
exports.version = "19.0.0-www-modern-de68d2f4-20241204";
16929+
exports.version = "19.0.0-www-modern-3b597c05-20241210";
1693416930
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1693516931
"function" ===
1693616932
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+3-6
Original file line numberDiff line numberDiff line change
@@ -10827,13 +10827,10 @@ var slice = Array.prototype.slice,
1082710827
})(React.Component);
1082810828
var internals$jscomp$inline_1509 = {
1082910829
bundleType: 0,
10830-
version: "19.0.0-www-classic-de68d2f4-20241204",
10830+
version: "19.0.0-www-classic-3b597c05-20241210",
1083110831
rendererPackageName: "react-art",
1083210832
currentDispatcherRef: ReactSharedInternals,
10833-
findFiberByHostInstance: function () {
10834-
return null;
10835-
},
10836-
reconcilerVersion: "19.0.0-www-classic-de68d2f4-20241204"
10833+
reconcilerVersion: "19.0.0-www-classic-3b597c05-20241210"
1083710834
};
1083810835
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1083910836
var hook$jscomp$inline_1510 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10859,4 +10856,4 @@ exports.RadialGradient = RadialGradient;
1085910856
exports.Shape = TYPES.SHAPE;
1086010857
exports.Surface = Surface;
1086110858
exports.Text = Text;
10862-
exports.version = "19.0.0-www-classic-de68d2f4-20241204";
10859+
exports.version = "19.0.0-www-classic-3b597c05-20241210";

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

+3-6
Original file line numberDiff line numberDiff line change
@@ -10543,13 +10543,10 @@ var slice = Array.prototype.slice,
1054310543
})(React.Component);
1054410544
var internals$jscomp$inline_1488 = {
1054510545
bundleType: 0,
10546-
version: "19.0.0-www-modern-de68d2f4-20241204",
10546+
version: "19.0.0-www-modern-3b597c05-20241210",
1054710547
rendererPackageName: "react-art",
1054810548
currentDispatcherRef: ReactSharedInternals,
10549-
findFiberByHostInstance: function () {
10550-
return null;
10551-
},
10552-
reconcilerVersion: "19.0.0-www-modern-de68d2f4-20241204"
10549+
reconcilerVersion: "19.0.0-www-modern-3b597c05-20241210"
1055310550
};
1055410551
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1055510552
var hook$jscomp$inline_1489 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10575,4 +10572,4 @@ exports.RadialGradient = RadialGradient;
1057510572
exports.Shape = TYPES.SHAPE;
1057610573
exports.Surface = Surface;
1057710574
exports.Text = Text;
10578-
exports.version = "19.0.0-www-modern-de68d2f4-20241204";
10575+
exports.version = "19.0.0-www-modern-3b597c05-20241210";

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -27569,11 +27569,11 @@ __DEV__ &&
2756927569
return_targetInst = null;
2757027570
(function () {
2757127571
var isomorphicReactPackageVersion = React.version;
27572-
if ("19.0.0-www-classic-de68d2f4-20241204" !== isomorphicReactPackageVersion)
27572+
if ("19.0.0-www-classic-3b597c05-20241210" !== isomorphicReactPackageVersion)
2757327573
throw Error(
2757427574
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2757527575
(isomorphicReactPackageVersion +
27576-
"\n - react-dom: 19.0.0-www-classic-de68d2f4-20241204\nLearn more: https://react.dev/warnings/version-mismatch")
27576+
"\n - react-dom: 19.0.0-www-classic-3b597c05-20241210\nLearn more: https://react.dev/warnings/version-mismatch")
2757727577
);
2757827578
})();
2757927579
("function" === typeof Map &&
@@ -27616,11 +27616,10 @@ __DEV__ &&
2761627616
!(function () {
2761727617
var internals = {
2761827618
bundleType: 1,
27619-
version: "19.0.0-www-classic-de68d2f4-20241204",
27619+
version: "19.0.0-www-classic-3b597c05-20241210",
2762027620
rendererPackageName: "react-dom",
2762127621
currentDispatcherRef: ReactSharedInternals,
27622-
findFiberByHostInstance: getClosestInstanceFromNode,
27623-
reconcilerVersion: "19.0.0-www-classic-de68d2f4-20241204"
27622+
reconcilerVersion: "19.0.0-www-classic-3b597c05-20241210"
2762427623
};
2762527624
internals.overrideHookState = overrideHookState;
2762627625
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -28225,7 +28224,7 @@ __DEV__ &&
2822528224
exports.useFormStatus = function () {
2822628225
return resolveDispatcher().useHostTransitionStatus();
2822728226
};
28228-
exports.version = "19.0.0-www-classic-de68d2f4-20241204";
28227+
exports.version = "19.0.0-www-classic-3b597c05-20241210";
2822928228
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2823028229
"function" ===
2823128230
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -27348,11 +27348,11 @@ __DEV__ &&
2734827348
return_targetInst = null;
2734927349
(function () {
2735027350
var isomorphicReactPackageVersion = React.version;
27351-
if ("19.0.0-www-modern-de68d2f4-20241204" !== isomorphicReactPackageVersion)
27351+
if ("19.0.0-www-modern-3b597c05-20241210" !== isomorphicReactPackageVersion)
2735227352
throw Error(
2735327353
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2735427354
(isomorphicReactPackageVersion +
27355-
"\n - react-dom: 19.0.0-www-modern-de68d2f4-20241204\nLearn more: https://react.dev/warnings/version-mismatch")
27355+
"\n - react-dom: 19.0.0-www-modern-3b597c05-20241210\nLearn more: https://react.dev/warnings/version-mismatch")
2735627356
);
2735727357
})();
2735827358
("function" === typeof Map &&
@@ -27395,11 +27395,10 @@ __DEV__ &&
2739527395
!(function () {
2739627396
var internals = {
2739727397
bundleType: 1,
27398-
version: "19.0.0-www-modern-de68d2f4-20241204",
27398+
version: "19.0.0-www-modern-3b597c05-20241210",
2739927399
rendererPackageName: "react-dom",
2740027400
currentDispatcherRef: ReactSharedInternals,
27401-
findFiberByHostInstance: getClosestInstanceFromNode,
27402-
reconcilerVersion: "19.0.0-www-modern-de68d2f4-20241204"
27401+
reconcilerVersion: "19.0.0-www-modern-3b597c05-20241210"
2740327402
};
2740427403
internals.overrideHookState = overrideHookState;
2740527404
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -28004,7 +28003,7 @@ __DEV__ &&
2800428003
exports.useFormStatus = function () {
2800528004
return resolveDispatcher().useHostTransitionStatus();
2800628005
};
28007-
exports.version = "19.0.0-www-modern-de68d2f4-20241204";
28006+
exports.version = "19.0.0-www-modern-3b597c05-20241210";
2800828007
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2800928008
"function" ===
2801028009
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -17277,14 +17277,14 @@ function getCrossOriginStringAs(as, input) {
1727717277
}
1727817278
var isomorphicReactPackageVersion$jscomp$inline_1774 = React.version;
1727917279
if (
17280-
"19.0.0-www-classic-de68d2f4-20241204" !==
17280+
"19.0.0-www-classic-3b597c05-20241210" !==
1728117281
isomorphicReactPackageVersion$jscomp$inline_1774
1728217282
)
1728317283
throw Error(
1728417284
formatProdErrorMessage(
1728517285
527,
1728617286
isomorphicReactPackageVersion$jscomp$inline_1774,
17287-
"19.0.0-www-classic-de68d2f4-20241204"
17287+
"19.0.0-www-classic-3b597c05-20241210"
1728817288
)
1728917289
);
1729017290
Internals.findDOMNode = function (componentOrElement) {
@@ -17302,11 +17302,10 @@ Internals.Events = [
1730217302
];
1730317303
var internals$jscomp$inline_2315 = {
1730417304
bundleType: 0,
17305-
version: "19.0.0-www-classic-de68d2f4-20241204",
17305+
version: "19.0.0-www-classic-3b597c05-20241210",
1730617306
rendererPackageName: "react-dom",
1730717307
currentDispatcherRef: ReactSharedInternals,
17308-
findFiberByHostInstance: getClosestInstanceFromNode,
17309-
reconcilerVersion: "19.0.0-www-classic-de68d2f4-20241204"
17308+
reconcilerVersion: "19.0.0-www-classic-3b597c05-20241210"
1731017309
};
1731117310
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1731217311
var hook$jscomp$inline_2316 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17669,4 +17668,4 @@ exports.useFormState = function (action, initialState, permalink) {
1766917668
exports.useFormStatus = function () {
1767017669
return ReactSharedInternals.H.useHostTransitionStatus();
1767117670
};
17672-
exports.version = "19.0.0-www-classic-de68d2f4-20241204";
17671+
exports.version = "19.0.0-www-classic-3b597c05-20241210";

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -17008,14 +17008,14 @@ function getCrossOriginStringAs(as, input) {
1700817008
}
1700917009
var isomorphicReactPackageVersion$jscomp$inline_1764 = React.version;
1701017010
if (
17011-
"19.0.0-www-modern-de68d2f4-20241204" !==
17011+
"19.0.0-www-modern-3b597c05-20241210" !==
1701217012
isomorphicReactPackageVersion$jscomp$inline_1764
1701317013
)
1701417014
throw Error(
1701517015
formatProdErrorMessage(
1701617016
527,
1701717017
isomorphicReactPackageVersion$jscomp$inline_1764,
17018-
"19.0.0-www-modern-de68d2f4-20241204"
17018+
"19.0.0-www-modern-3b597c05-20241210"
1701917019
)
1702017020
);
1702117021
Internals.findDOMNode = function (componentOrElement) {
@@ -17033,11 +17033,10 @@ Internals.Events = [
1703317033
];
1703417034
var internals$jscomp$inline_2297 = {
1703517035
bundleType: 0,
17036-
version: "19.0.0-www-modern-de68d2f4-20241204",
17036+
version: "19.0.0-www-modern-3b597c05-20241210",
1703717037
rendererPackageName: "react-dom",
1703817038
currentDispatcherRef: ReactSharedInternals,
17039-
findFiberByHostInstance: getClosestInstanceFromNode,
17040-
reconcilerVersion: "19.0.0-www-modern-de68d2f4-20241204"
17039+
reconcilerVersion: "19.0.0-www-modern-3b597c05-20241210"
1704117040
};
1704217041
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1704317042
var hook$jscomp$inline_2298 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17400,4 +17399,4 @@ exports.useFormState = function (action, initialState, permalink) {
1740017399
exports.useFormStatus = function () {
1740117400
return ReactSharedInternals.H.useHostTransitionStatus();
1740217401
};
17403-
exports.version = "19.0.0-www-modern-de68d2f4-20241204";
17402+
exports.version = "19.0.0-www-modern-3b597c05-20241210";

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -17966,14 +17966,14 @@ function getCrossOriginStringAs(as, input) {
1796617966
}
1796717967
var isomorphicReactPackageVersion$jscomp$inline_1867 = React.version;
1796817968
if (
17969-
"19.0.0-www-classic-de68d2f4-20241204" !==
17969+
"19.0.0-www-classic-3b597c05-20241210" !==
1797017970
isomorphicReactPackageVersion$jscomp$inline_1867
1797117971
)
1797217972
throw Error(
1797317973
formatProdErrorMessage(
1797417974
527,
1797517975
isomorphicReactPackageVersion$jscomp$inline_1867,
17976-
"19.0.0-www-classic-de68d2f4-20241204"
17976+
"19.0.0-www-classic-3b597c05-20241210"
1797717977
)
1797817978
);
1797917979
Internals.findDOMNode = function (componentOrElement) {
@@ -17991,11 +17991,10 @@ Internals.Events = [
1799117991
];
1799217992
var internals$jscomp$inline_1869 = {
1799317993
bundleType: 0,
17994-
version: "19.0.0-www-classic-de68d2f4-20241204",
17994+
version: "19.0.0-www-classic-3b597c05-20241210",
1799517995
rendererPackageName: "react-dom",
1799617996
currentDispatcherRef: ReactSharedInternals,
17997-
findFiberByHostInstance: getClosestInstanceFromNode,
17998-
reconcilerVersion: "19.0.0-www-classic-de68d2f4-20241204"
17997+
reconcilerVersion: "19.0.0-www-classic-3b597c05-20241210"
1799917998
};
1800017999
enableSchedulingProfiler &&
1800118000
((internals$jscomp$inline_1869.getLaneLabelMap = getLaneLabelMap),
@@ -18361,7 +18360,7 @@ exports.useFormState = function (action, initialState, permalink) {
1836118360
exports.useFormStatus = function () {
1836218361
return ReactSharedInternals.H.useHostTransitionStatus();
1836318362
};
18364-
exports.version = "19.0.0-www-classic-de68d2f4-20241204";
18363+
exports.version = "19.0.0-www-classic-3b597c05-20241210";
1836518364
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1836618365
"function" ===
1836718366
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -17696,14 +17696,14 @@ function getCrossOriginStringAs(as, input) {
1769617696
}
1769717697
var isomorphicReactPackageVersion$jscomp$inline_1857 = React.version;
1769817698
if (
17699-
"19.0.0-www-modern-de68d2f4-20241204" !==
17699+
"19.0.0-www-modern-3b597c05-20241210" !==
1770017700
isomorphicReactPackageVersion$jscomp$inline_1857
1770117701
)
1770217702
throw Error(
1770317703
formatProdErrorMessage(
1770417704
527,
1770517705
isomorphicReactPackageVersion$jscomp$inline_1857,
17706-
"19.0.0-www-modern-de68d2f4-20241204"
17706+
"19.0.0-www-modern-3b597c05-20241210"
1770717707
)
1770817708
);
1770917709
Internals.findDOMNode = function (componentOrElement) {
@@ -17721,11 +17721,10 @@ Internals.Events = [
1772117721
];
1772217722
var internals$jscomp$inline_1859 = {
1772317723
bundleType: 0,
17724-
version: "19.0.0-www-modern-de68d2f4-20241204",
17724+
version: "19.0.0-www-modern-3b597c05-20241210",
1772517725
rendererPackageName: "react-dom",
1772617726
currentDispatcherRef: ReactSharedInternals,
17727-
findFiberByHostInstance: getClosestInstanceFromNode,
17728-
reconcilerVersion: "19.0.0-www-modern-de68d2f4-20241204"
17727+
reconcilerVersion: "19.0.0-www-modern-3b597c05-20241210"
1772917728
};
1773017729
enableSchedulingProfiler &&
1773117730
((internals$jscomp$inline_1859.getLaneLabelMap = getLaneLabelMap),
@@ -18091,7 +18090,7 @@ exports.useFormState = function (action, initialState, permalink) {
1809118090
exports.useFormStatus = function () {
1809218091
return ReactSharedInternals.H.useHostTransitionStatus();
1809318092
};
18094-
exports.version = "19.0.0-www-modern-de68d2f4-20241204";
18093+
exports.version = "19.0.0-www-modern-3b597c05-20241210";
1809518094
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1809618095
"function" ===
1809718096
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

+1-1
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-de68d2f4-20241204";
8994+
exports.version = "19.0.0-www-classic-3b597c05-20241210";
89958995
})();

0 commit comments

Comments
 (0)