From a3e4ff9ac3bc543aba7fcd146c5e5bc3c18409ac Mon Sep 17 00:00:00 2001 From: sammy-SC <1733610+sammy-SC@users.noreply.github.com> Date: Fri, 7 Mar 2025 09:09:54 -0800 Subject: [PATCH] Fix asserts caused by OffscreenComponent rendering in React Native with passChildrenWhenCloningPersistedNodes (#32528) ## Summary This PR fixes asserts when `passChildrenWhenCloningPersistedNodes` is enabled for React Native and OffscreenComponent child rendering unhides host components. Discussions around possible fixes for the asserts seen in React Native suggested changing the way we handle hiding/unhiding host components by updating the fiber state with the hidden host component instead of submitting a hidden clone Fabric and keeping the original as the current fiber. Implementing this fix would require holding onto the original styling of the hidden host component. The reconciler updates the styling by adding `display: none` to hide the contents. If the original host component was already hidden, the renderer would lose that information and remove the styling when showing the contents again. To reduce the changes required to make `passChildrenWhenCloningPersistedNodes` work, this PR falls back to the original cloning method when OffscreenComponents are part of the children needed to be added back. This effectively resolve the asserts triggered by the feature in RN and improves overall performance. ## How did you test this change? This fix was tested by enabling `passChildrenWhenCloningPersistedNodes` in an app built with React Native that had a repro for triggering the asserts. The asserts do not occur anymore when using the changes in this PR. --------- Co-authored-by: Nick DiffTrain build for [cc680065c33739cc4c8cd2e8a67312b0c16a6ccc](https://github.com/facebook/react/commit/cc680065c33739cc4c8cd2e8a67312b0c16a6ccc) --- compiled/facebook-www/REVISION | 2 +- compiled/facebook-www/REVISION_TRANSFORMS | 2 +- compiled/facebook-www/React-dev.classic.js | 2 +- compiled/facebook-www/React-dev.modern.js | 2 +- compiled/facebook-www/React-prod.classic.js | 2 +- compiled/facebook-www/React-prod.modern.js | 2 +- compiled/facebook-www/React-profiling.classic.js | 2 +- compiled/facebook-www/React-profiling.modern.js | 2 +- compiled/facebook-www/ReactART-dev.classic.js | 6 +++--- compiled/facebook-www/ReactART-dev.modern.js | 6 +++--- compiled/facebook-www/ReactART-prod.classic.js | 6 +++--- compiled/facebook-www/ReactART-prod.modern.js | 6 +++--- compiled/facebook-www/ReactDOM-dev.classic.js | 10 +++++----- compiled/facebook-www/ReactDOM-dev.modern.js | 10 +++++----- compiled/facebook-www/ReactDOM-prod.classic.js | 10 +++++----- compiled/facebook-www/ReactDOM-prod.modern.js | 10 +++++----- .../facebook-www/ReactDOM-profiling.classic.js | 10 +++++----- .../facebook-www/ReactDOM-profiling.modern.js | 10 +++++----- .../facebook-www/ReactDOMServer-dev.classic.js | 2 +- .../facebook-www/ReactDOMServer-dev.modern.js | 2 +- .../facebook-www/ReactDOMServer-prod.classic.js | 2 +- .../facebook-www/ReactDOMServer-prod.modern.js | 2 +- .../facebook-www/ReactDOMTesting-dev.classic.js | 10 +++++----- .../facebook-www/ReactDOMTesting-dev.modern.js | 10 +++++----- .../facebook-www/ReactDOMTesting-prod.classic.js | 10 +++++----- .../facebook-www/ReactDOMTesting-prod.modern.js | 10 +++++----- .../facebook-www/ReactReconciler-dev.classic.js | 15 ++++++++++----- .../facebook-www/ReactReconciler-dev.modern.js | 15 ++++++++++----- .../facebook-www/ReactReconciler-prod.classic.js | 15 ++++++++++----- .../facebook-www/ReactReconciler-prod.modern.js | 15 ++++++++++----- .../facebook-www/ReactTestRenderer-dev.classic.js | 6 +++--- .../facebook-www/ReactTestRenderer-dev.modern.js | 6 +++--- compiled/facebook-www/VERSION_CLASSIC | 2 +- compiled/facebook-www/VERSION_MODERN | 2 +- 34 files changed, 122 insertions(+), 102 deletions(-) diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 6777ee5358..dfdcf50db9 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -f9d78089c6ec8dce3a11cdf135d6d27b7a8dc1c5 +cc680065c33739cc4c8cd2e8a67312b0c16a6ccc diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 6777ee5358..dfdcf50db9 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -f9d78089c6ec8dce3a11cdf135d6d27b7a8dc1c5 +cc680065c33739cc4c8cd2e8a67312b0c16a6ccc diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index fe5a63a231..9cf350a048 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1532,7 +1532,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-classic-f9d78089-20250306"; + exports.version = "19.1.0-www-classic-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-dev.modern.js b/compiled/facebook-www/React-dev.modern.js index 01ed355010..070cf43e77 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1532,7 +1532,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-modern-f9d78089-20250306"; + exports.version = "19.1.0-www-modern-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-prod.classic.js b/compiled/facebook-www/React-prod.classic.js index 432b5043c5..1f14c1e69f 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -641,4 +641,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-f9d78089-20250306"; +exports.version = "19.1.0-www-classic-cc680065-20250307"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 283748d013..c1679fa870 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -641,4 +641,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-f9d78089-20250306"; +exports.version = "19.1.0-www-modern-cc680065-20250307"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index f93cbdffa4..7dfc50cd11 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -645,7 +645,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-f9d78089-20250306"; +exports.version = "19.1.0-www-classic-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-profiling.modern.js b/compiled/facebook-www/React-profiling.modern.js index d1a5b1b069..f33885fc7c 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -645,7 +645,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-f9d78089-20250306"; +exports.version = "19.1.0-www-modern-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-dev.classic.js b/compiled/facebook-www/ReactART-dev.classic.js index 7bf4baf218..3f56b636e6 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -18486,10 +18486,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-f9d78089-20250306", + version: "19.1.0-www-classic-cc680065-20250307", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18523,7 +18523,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-classic-f9d78089-20250306"; + exports.version = "19.1.0-www-classic-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-dev.modern.js b/compiled/facebook-www/ReactART-dev.modern.js index 87030f84db..fa2c3f0c36 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -18258,10 +18258,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-f9d78089-20250306", + version: "19.1.0-www-modern-cc680065-20250307", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18295,7 +18295,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-modern-f9d78089-20250306"; + exports.version = "19.1.0-www-modern-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-prod.classic.js b/compiled/facebook-www/ReactART-prod.classic.js index cbf3835eee..b771f6b9c6 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11299,10 +11299,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1582 = { bundleType: 0, - version: "19.1.0-www-classic-f9d78089-20250306", + version: "19.1.0-www-classic-cc680065-20250307", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1583 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11328,4 +11328,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-classic-f9d78089-20250306"; +exports.version = "19.1.0-www-classic-cc680065-20250307"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index da5a6d251c..3c651dcfc5 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -11014,10 +11014,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1555 = { bundleType: 0, - version: "19.1.0-www-modern-f9d78089-20250306", + version: "19.1.0-www-modern-cc680065-20250307", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1556 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11043,4 +11043,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-modern-f9d78089-20250306"; +exports.version = "19.1.0-www-modern-cc680065-20250307"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index fc247f987f..960675c247 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -29832,11 +29832,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-f9d78089-20250306" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-cc680065-20250307" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-www-classic-f9d78089-20250306\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -29879,10 +29879,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-f9d78089-20250306", + version: "19.1.0-www-classic-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30480,7 +30480,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-f9d78089-20250306"; + exports.version = "19.1.0-www-classic-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-dev.modern.js b/compiled/facebook-www/ReactDOM-dev.modern.js index 4d191caee9..30b3e6704b 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -29618,11 +29618,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-f9d78089-20250306" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-cc680065-20250307" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-www-modern-f9d78089-20250306\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -29665,10 +29665,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-f9d78089-20250306", + version: "19.1.0-www-modern-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30266,7 +30266,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-f9d78089-20250306"; + exports.version = "19.1.0-www-modern-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-prod.classic.js b/compiled/facebook-www/ReactDOM-prod.classic.js index 7230a1fc44..f7c649f9df 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -18599,14 +18599,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1900 = React.version; if ( - "19.1.0-www-classic-f9d78089-20250306" !== + "19.1.0-www-classic-cc680065-20250307" !== isomorphicReactPackageVersion$jscomp$inline_1900 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1900, - "19.1.0-www-classic-f9d78089-20250306" + "19.1.0-www-classic-cc680065-20250307" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18624,10 +18624,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2473 = { bundleType: 0, - version: "19.1.0-www-classic-f9d78089-20250306", + version: "19.1.0-www-classic-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2474 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -18991,4 +18991,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-f9d78089-20250306"; +exports.version = "19.1.0-www-classic-cc680065-20250307"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index da14f78ad9..ace6da92f6 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -18330,14 +18330,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1890 = React.version; if ( - "19.1.0-www-modern-f9d78089-20250306" !== + "19.1.0-www-modern-cc680065-20250307" !== isomorphicReactPackageVersion$jscomp$inline_1890 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1890, - "19.1.0-www-modern-f9d78089-20250306" + "19.1.0-www-modern-cc680065-20250307" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18355,10 +18355,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2455 = { bundleType: 0, - version: "19.1.0-www-modern-f9d78089-20250306", + version: "19.1.0-www-modern-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2456 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -18722,4 +18722,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-f9d78089-20250306"; +exports.version = "19.1.0-www-modern-cc680065-20250307"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index 86b24d95c0..1924c1e50f 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -20341,14 +20341,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2060 = React.version; if ( - "19.1.0-www-classic-f9d78089-20250306" !== + "19.1.0-www-classic-cc680065-20250307" !== isomorphicReactPackageVersion$jscomp$inline_2060 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2060, - "19.1.0-www-classic-f9d78089-20250306" + "19.1.0-www-classic-cc680065-20250307" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20366,10 +20366,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2062 = { bundleType: 0, - version: "19.1.0-www-classic-f9d78089-20250306", + version: "19.1.0-www-classic-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; enableSchedulingProfiler && ((internals$jscomp$inline_2062.getLaneLabelMap = getLaneLabelMap), @@ -20736,7 +20736,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-f9d78089-20250306"; +exports.version = "19.1.0-www-classic-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-profiling.modern.js b/compiled/facebook-www/ReactDOM-profiling.modern.js index bb55358e98..2d409cc499 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -20139,14 +20139,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2050 = React.version; if ( - "19.1.0-www-modern-f9d78089-20250306" !== + "19.1.0-www-modern-cc680065-20250307" !== isomorphicReactPackageVersion$jscomp$inline_2050 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2050, - "19.1.0-www-modern-f9d78089-20250306" + "19.1.0-www-modern-cc680065-20250307" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20164,10 +20164,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2052 = { bundleType: 0, - version: "19.1.0-www-modern-f9d78089-20250306", + version: "19.1.0-www-modern-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; enableSchedulingProfiler && ((internals$jscomp$inline_2052.getLaneLabelMap = getLaneLabelMap), @@ -20534,7 +20534,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-f9d78089-20250306"; +exports.version = "19.1.0-www-modern-cc680065-20250307"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOMServer-dev.classic.js b/compiled/facebook-www/ReactDOMServer-dev.classic.js index bc5c6c168a..f70a332397 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -9412,5 +9412,5 @@ __DEV__ && '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' ); }; - exports.version = "19.1.0-www-classic-f9d78089-20250306"; + exports.version = "19.1.0-www-classic-cc680065-20250307"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index 41d284de86..851fa038c7 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -9238,5 +9238,5 @@ __DEV__ && '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' ); }; - exports.version = "19.1.0-www-modern-f9d78089-20250306"; + exports.version = "19.1.0-www-modern-cc680065-20250307"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index c049ec037c..e7a1f7f6bc 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -6196,4 +6196,4 @@ exports.renderToString = function (children, options) { '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' ); }; -exports.version = "19.1.0-www-classic-f9d78089-20250306"; +exports.version = "19.1.0-www-classic-cc680065-20250307"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index 67e604edda..22e2e922d5 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -6108,4 +6108,4 @@ exports.renderToString = function (children, options) { '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' ); }; -exports.version = "19.1.0-www-modern-f9d78089-20250306"; +exports.version = "19.1.0-www-modern-cc680065-20250307"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index 336ecebe90..37d1a3e02e 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -30166,11 +30166,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-f9d78089-20250306" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-cc680065-20250307" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-www-classic-f9d78089-20250306\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30213,10 +30213,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-f9d78089-20250306", + version: "19.1.0-www-classic-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30980,5 +30980,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-f9d78089-20250306"; + exports.version = "19.1.0-www-classic-cc680065-20250307"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index 8e74e23f6a..b438ae1293 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -29952,11 +29952,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-f9d78089-20250306" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-cc680065-20250307" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.1.0-www-modern-f9d78089-20250306\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-cc680065-20250307\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -29999,10 +29999,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-f9d78089-20250306", + version: "19.1.0-www-modern-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30766,5 +30766,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-f9d78089-20250306"; + exports.version = "19.1.0-www-modern-cc680065-20250307"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index ddadd138de..aabfdc20c7 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -18928,14 +18928,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1929 = React.version; if ( - "19.1.0-www-classic-f9d78089-20250306" !== + "19.1.0-www-classic-cc680065-20250307" !== isomorphicReactPackageVersion$jscomp$inline_1929 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1929, - "19.1.0-www-classic-f9d78089-20250306" + "19.1.0-www-classic-cc680065-20250307" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18953,10 +18953,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2507 = { bundleType: 0, - version: "19.1.0-www-classic-f9d78089-20250306", + version: "19.1.0-www-classic-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2508 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19471,4 +19471,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-f9d78089-20250306"; +exports.version = "19.1.0-www-classic-cc680065-20250307"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index 626c7a3126..b99bc1bbda 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -18659,14 +18659,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1919 = React.version; if ( - "19.1.0-www-modern-f9d78089-20250306" !== + "19.1.0-www-modern-cc680065-20250307" !== isomorphicReactPackageVersion$jscomp$inline_1919 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1919, - "19.1.0-www-modern-f9d78089-20250306" + "19.1.0-www-modern-cc680065-20250307" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18684,10 +18684,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2489 = { bundleType: 0, - version: "19.1.0-www-modern-f9d78089-20250306", + version: "19.1.0-www-modern-cc680065-20250307", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2490 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19202,4 +19202,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-f9d78089-20250306"; +exports.version = "19.1.0-www-modern-cc680065-20250307"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index 29a2928db9..b9b7a5f0ad 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -10055,6 +10055,7 @@ __DEV__ && needsVisibilityToggle, isHidden ) { + var hasOffscreenComponentChild = !1; if (supportsPersistence) for (var node = workInProgress.child; null !== node; ) { if (5 === node.tag) { @@ -10078,8 +10079,9 @@ __DEV__ && appendChildToContainerChildSet(containerChildSet, instance); else if (4 !== node.tag) if (22 === node.tag && null !== node.memoizedState) - (instance = node.child), - null !== instance && (instance.return = node), + (hasOffscreenComponentChild = node.child), + null !== hasOffscreenComponentChild && + (hasOffscreenComponentChild.return = node), appendAllChildrenToContainer( containerChildSet, node, @@ -10088,7 +10090,8 @@ __DEV__ && "manual" === node.memoizedProps.mode ), !0 - ); + ), + (hasOffscreenComponentChild = !0); else if (null !== node.child) { node.child.return = node; node = node.child; @@ -10096,12 +10099,14 @@ __DEV__ && } if (node === workInProgress) break; for (; null === node.sibling; ) { - if (null === node.return || node.return === workInProgress) return; + if (null === node.return || node.return === workInProgress) + return hasOffscreenComponentChild; node = node.return; } node.sibling.return = node.return; node = node.sibling; } + return hasOffscreenComponentChild; } function updateHostContainer(current, workInProgress) { if (supportsPersistence && doesRequireClone(current, workInProgress)) { @@ -21104,7 +21109,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index 46f89ca26f..88d54c57fb 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -9887,6 +9887,7 @@ __DEV__ && needsVisibilityToggle, isHidden ) { + var hasOffscreenComponentChild = !1; if (supportsPersistence) for (var node = workInProgress.child; null !== node; ) { if (5 === node.tag) { @@ -9910,8 +9911,9 @@ __DEV__ && appendChildToContainerChildSet(containerChildSet, instance); else if (4 !== node.tag) if (22 === node.tag && null !== node.memoizedState) - (instance = node.child), - null !== instance && (instance.return = node), + (hasOffscreenComponentChild = node.child), + null !== hasOffscreenComponentChild && + (hasOffscreenComponentChild.return = node), appendAllChildrenToContainer( containerChildSet, node, @@ -9920,7 +9922,8 @@ __DEV__ && "manual" === node.memoizedProps.mode ), !0 - ); + ), + (hasOffscreenComponentChild = !0); else if (null !== node.child) { node.child.return = node; node = node.child; @@ -9928,12 +9931,14 @@ __DEV__ && } if (node === workInProgress) break; for (; null === node.sibling; ) { - if (null === node.return || node.return === workInProgress) return; + if (null === node.return || node.return === workInProgress) + return hasOffscreenComponentChild; node = node.return; } node.sibling.return = node.return; node = node.sibling; } + return hasOffscreenComponentChild; } function updateHostContainer(current, workInProgress) { if (supportsPersistence && doesRequireClone(current, workInProgress)) { @@ -20885,7 +20890,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 2590b4e02b..87573a2d37 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -6643,6 +6643,7 @@ module.exports = function ($$$config) { needsVisibilityToggle, isHidden ) { + var hasOffscreenComponentChild = !1; if (supportsPersistence) for (var node = workInProgress.child; null !== node; ) { if (5 === node.tag) { @@ -6666,8 +6667,9 @@ module.exports = function ($$$config) { appendChildToContainerChildSet(containerChildSet, instance); else if (4 !== node.tag) if (22 === node.tag && null !== node.memoizedState) - (instance = node.child), - null !== instance && (instance.return = node), + (hasOffscreenComponentChild = node.child), + null !== hasOffscreenComponentChild && + (hasOffscreenComponentChild.return = node), appendAllChildrenToContainer( containerChildSet, node, @@ -6676,7 +6678,8 @@ module.exports = function ($$$config) { "manual" === node.memoizedProps.mode ), !0 - ); + ), + (hasOffscreenComponentChild = !0); else if (null !== node.child) { node.child.return = node; node = node.child; @@ -6684,12 +6687,14 @@ module.exports = function ($$$config) { } if (node === workInProgress) break; for (; null === node.sibling; ) { - if (null === node.return || node.return === workInProgress) return; + if (null === node.return || node.return === workInProgress) + return hasOffscreenComponentChild; node = node.return; } node.sibling.return = node.return; node = node.sibling; } + return hasOffscreenComponentChild; } function updateHostContainer(current, workInProgress) { if (supportsPersistence && doesRequireClone(current, workInProgress)) { @@ -13806,7 +13811,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index 6088015113..1e469c8d6b 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -6419,6 +6419,7 @@ module.exports = function ($$$config) { needsVisibilityToggle, isHidden ) { + var hasOffscreenComponentChild = !1; if (supportsPersistence) for (var node = workInProgress.child; null !== node; ) { if (5 === node.tag) { @@ -6442,8 +6443,9 @@ module.exports = function ($$$config) { appendChildToContainerChildSet(containerChildSet, instance); else if (4 !== node.tag) if (22 === node.tag && null !== node.memoizedState) - (instance = node.child), - null !== instance && (instance.return = node), + (hasOffscreenComponentChild = node.child), + null !== hasOffscreenComponentChild && + (hasOffscreenComponentChild.return = node), appendAllChildrenToContainer( containerChildSet, node, @@ -6452,7 +6454,8 @@ module.exports = function ($$$config) { "manual" === node.memoizedProps.mode ), !0 - ); + ), + (hasOffscreenComponentChild = !0); else if (null !== node.child) { node.child.return = node; node = node.child; @@ -6460,12 +6463,14 @@ module.exports = function ($$$config) { } if (node === workInProgress) break; for (; null === node.sibling; ) { - if (null === node.return || node.return === workInProgress) return; + if (null === node.return || node.return === workInProgress) + return hasOffscreenComponentChild; node = node.return; } node.sibling.return = node.return; node = node.sibling; } + return hasOffscreenComponentChild; } function updateHostContainer(current, workInProgress) { if (supportsPersistence && doesRequireClone(current, workInProgress)) { @@ -13525,7 +13530,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 8db8b58418..c58d6d3c27 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15040,10 +15040,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-f9d78089-20250306", + version: "19.1.0-www-classic-cc680065-20250307", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-classic-cc680065-20250307" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15178,5 +15178,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-classic-f9d78089-20250306"; + exports.version = "19.1.0-www-classic-cc680065-20250307"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index 6f055f8057..ee90e25411 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15040,10 +15040,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-f9d78089-20250306", + version: "19.1.0-www-modern-cc680065-20250307", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-f9d78089-20250306" + reconcilerVersion: "19.1.0-www-modern-cc680065-20250307" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15178,5 +15178,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-modern-f9d78089-20250306"; + exports.version = "19.1.0-www-modern-cc680065-20250307"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index de2ea14931..6758985d99 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.1.0-www-classic-f9d78089-20250306 \ No newline at end of file +19.1.0-www-classic-cc680065-20250307 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index f2f392c15c..50121971a1 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.1.0-www-modern-f9d78089-20250306 \ No newline at end of file +19.1.0-www-modern-cc680065-20250307 \ No newline at end of file