diff --git a/packages/react-native/ReactCommon/react/config/ReactNativeConfig.cpp b/packages/react-native/ReactCommon/react/config/ReactNativeConfig.cpp index 9a496f92f4bcfd..8dedd282808e35 100644 --- a/packages/react-native/ReactCommon/react/config/ReactNativeConfig.cpp +++ b/packages/react-native/ReactCommon/react/config/ReactNativeConfig.cpp @@ -24,6 +24,9 @@ bool EmptyReactNativeConfig::getBool(const std::string ¶m) const { if (param == "react_fabric:enabled_layout_animations_ios") { return true; } + if (param == "react_fabric:enable_nstextstorage_caching") { + return true; + } return false; }