diff --git a/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm b/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm index deaf2124c91878..31a18620bd89c4 100644 --- a/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +++ b/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm @@ -31,7 +31,6 @@ #import #import #import -#import #import #import #import @@ -136,11 +135,6 @@ - (instancetype)initWithDelegate:(id)delegate name:@"RCTNotifyEventDispatcherObserversOfEvent_DEPRECATED" object:nil]; - [defaultCenter addObserver:self - selector:@selector(didReceiveReloadCommand) - name:RCTTriggerReloadCommandNotification - object:nil]; - [self _start]; } return self; @@ -519,9 +513,4 @@ - (void)_handleJSError:(const JsErrorHandler::ParsedError &)error isFatal:error.isFatal]; } -- (void)didReceiveReloadCommand -{ - [self _loadJSBundle:[_bridgeModuleDecorator.bundleManager bundleURL]]; -} - @end