@@ -68,8 +68,6 @@ var ReactSharedInternals =
68
68
dynamicFeatureFlags.enableInfiniteRenderLoopDetection,
69
69
enableRenderableContext = dynamicFeatureFlags.enableRenderableContext,
70
70
enableRefAsProp = dynamicFeatureFlags.enableRefAsProp,
71
- enableClientRenderFallbackOnTextMismatch =
72
- dynamicFeatureFlags.enableClientRenderFallbackOnTextMismatch,
73
71
enableSchedulingProfiler = dynamicFeatureFlags.enableSchedulingProfiler,
74
72
REACT_ELEMENT_TYPE = Symbol.for("react.element"),
75
73
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
@@ -7678,10 +7676,7 @@ function completeWork(current, workInProgress, renderLanes) {
7678
7676
renderLanes,
7679
7677
currentResource
7680
7678
);
7681
- if (
7682
- currentResource &&
7683
- enableClientRenderFallbackOnTextMismatch
7684
- ) {
7679
+ if (currentResource) {
7685
7680
current = !1;
7686
7681
break a;
7687
7682
}
@@ -7696,10 +7691,7 @@ function completeWork(current, workInProgress, renderLanes) {
7696
7691
renderLanes,
7697
7692
isConcurrentMode$27
7698
7693
);
7699
- if (
7700
- isConcurrentMode$27 &&
7701
- enableClientRenderFallbackOnTextMismatch
7702
- ) {
7694
+ if (isConcurrentMode$27) {
7703
7695
current = !1;
7704
7696
break a;
7705
7697
}
@@ -15112,8 +15104,7 @@ function checkForUnmatchedText(serverText, clientText, isConcurrentMode) {
15112
15104
clientText = normalizeMarkupForTextOrAttribute(clientText);
15113
15105
if (
15114
15106
normalizeMarkupForTextOrAttribute(serverText) !== clientText &&
15115
- isConcurrentMode &&
15116
- enableClientRenderFallbackOnTextMismatch
15107
+ isConcurrentMode
15117
15108
)
15118
15109
throw Error(formatProdErrorMessage(425));
15119
15110
}
@@ -16383,7 +16374,7 @@ function hydrateInstance(
16383
16374
internalInstanceHandle,
16384
16375
hostContext
16385
16376
),
16386
- ( hostContext && enableClientRenderFallbackOnTextMismatch) ||
16377
+ hostContext ||
16387
16378
"body" === type ||
16388
16379
(instance.textContent = internalInstanceHandle));
16389
16380
null != props.onScroll && listenToNonDelegatedEvent("scroll", instance);
@@ -17984,7 +17975,7 @@ Internals.Events = [
17984
17975
var devToolsConfig$jscomp$inline_1907 = {
17985
17976
findFiberByHostInstance: getClosestInstanceFromNode,
17986
17977
bundleType: 0,
17987
- version: "18.3.0-www-classic-819e0a71 ",
17978
+ version: "18.3.0-www-classic-ee3be4cf ",
17988
17979
rendererPackageName: "react-dom"
17989
17980
};
17990
17981
(function (internals) {
@@ -18028,7 +18019,7 @@ var devToolsConfig$jscomp$inline_1907 = {
18028
18019
scheduleRoot: null,
18029
18020
setRefreshHandler: null,
18030
18021
getCurrentFiber: null,
18031
- reconcilerVersion: "18.3.0-www-classic-819e0a71 "
18022
+ reconcilerVersion: "18.3.0-www-classic-ee3be4cf "
18032
18023
});
18033
18024
assign(Internals, {
18034
18025
ReactBrowserEventEmitter: {
@@ -18346,7 +18337,7 @@ exports.useFormState = function (action, initialState, permalink) {
18346
18337
exports.useFormStatus = function () {
18347
18338
return ReactCurrentDispatcher$2.current.useHostTransitionStatus();
18348
18339
};
18349
- exports.version = "18.3.0-www-classic-819e0a71 ";
18340
+ exports.version = "18.3.0-www-classic-ee3be4cf ";
18350
18341
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
18351
18342
"function" ===
18352
18343
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
0 commit comments