diff --git a/packages/react-native/ReactCommon/react/runtime/hermes/HermesInstance.cpp b/packages/react-native/ReactCommon/react/runtime/hermes/HermesInstance.cpp index 9d59d46043875c..52f95ca31cd260 100644 --- a/packages/react-native/ReactCommon/react/runtime/hermes/HermesInstance.cpp +++ b/packages/react-native/ReactCommon/react/runtime/hermes/HermesInstance.cpp @@ -139,18 +139,13 @@ std::unique_ptr HermesInstance::createJSRuntime( gcConfig.withAllocInYoung(false).withRevertToYGAtTTI(true); } - int64_t vmExperimentFlags = reactNativeConfig - ? reactNativeConfig->getInt64("ios_hermes:vm_experiment_flags") - : 0; - ::hermes::vm::RuntimeConfig::Builder runtimeConfigBuilder = ::hermes::vm::RuntimeConfig::Builder() .withGCConfig(gcConfig.build()) .withEnableSampleProfiling(true) .withMicrotaskQueue( ReactNativeFeatureFlags::enableBridgelessArchitecture() && - !ReactNativeFeatureFlags::disableEventLoopOnBridgeless()) - .withVMExperimentFlags(vmExperimentFlags); + !ReactNativeFeatureFlags::disableEventLoopOnBridgeless()); if (crashManager) { runtimeConfigBuilder.withCrashMgr(crashManager);