@@ -470,7 +470,7 @@ - (void)start
470470#if (RCT_DEV | RCT_ENABLE_LOADING_VIEW) && __has_include(<React/RCTDevLoadingViewProtocol.h>)
471471 // [TODO(OSS Candidate ISS#2710739)
472472 // Note: RCTDevLoadingView should have been loaded at this point, so no need to allow lazy loading.
473- if ([weakSelf isValid ] && [[weakSelf devSettings ] isDevModeEnabled ] ) {
473+ if ([weakSelf isValid ]) {
474474 id <RCTDevLoadingViewProtocol> loadingView = [weakSelf moduleForName: @" DevLoadingView"
475475 lazilyLoadIfNecessary: YES ];
476476 [loadingView updateProgress: progressData];
@@ -673,9 +673,7 @@ - (void)_initializeBridge:(std::shared_ptr<JSExecutorFactory>)executorFactory
673673 // This can only be false if the bridge was invalidated before startup completed
674674 if (_reactInstance) {
675675#if RCT_DEV
676- if ([[self devSettings ] isDevModeEnabled ]) { // TODO(OSS Candidate ISS#2710739)
677- executorFactory = std::make_shared<GetDescAdapter>(self, executorFactory);
678- } // TODO(OSS Candidate ISS#2710739)
676+ executorFactory = std::make_shared<GetDescAdapter>(self, executorFactory);
679677#endif
680678
681679 [self _initializeBridgeLocked: executorFactory];
@@ -1037,9 +1035,7 @@ - (void)executeSourceCode:(NSData *)sourceCode sync:(BOOL)sync
10371035 [self enqueueApplicationScript: sourceCode url: self .bundleURL onComplete: completion];
10381036 }
10391037
1040- if (self.devSettings .isDevModeEnabled ) { // TODO(OSS Candidate ISS#2710739)
1041- [self .devSettings setupHMRClientWithBundleURL: self .bundleURL];
1042- }
1038+ [self .devSettings setupHMRClientWithBundleURL: self .bundleURL];
10431039}
10441040
10451041#if RCT_DEV_MENU
0 commit comments