@@ -537,7 +537,7 @@ - (void)start
537537#if (RCT_DEV | RCT_ENABLE_LOADING_VIEW) && __has_include(<React/RCTDevLoadingViewProtocol.h>)
538538 // [TODO(OSS Candidate ISS#2710739)
539539 // Note: RCTDevLoadingView should have been loaded at this point, so no need to allow lazy loading.
540- if ([weakSelf isValid ] && [[weakSelf devSettings ] isDevModeEnabled ] ) {
540+ if ([weakSelf isValid ]) {
541541 id <RCTDevLoadingViewProtocol> loadingView = [weakSelf moduleForName: @" DevLoadingView"
542542 lazilyLoadIfNecessary: YES ];
543543 [loadingView updateProgress: progressData];
@@ -740,9 +740,7 @@ - (void)_initializeBridge:(std::shared_ptr<JSExecutorFactory>)executorFactory
740740 // This can only be false if the bridge was invalidated before startup completed
741741 if (_reactInstance) {
742742#if RCT_DEV
743- if ([[self devSettings ] isDevModeEnabled ]) { // TODO(OSS Candidate ISS#2710739)
744- executorFactory = std::make_shared<GetDescAdapter>(self, executorFactory);
745- } // TODO(OSS Candidate ISS#2710739)
743+ executorFactory = std::make_shared<GetDescAdapter>(self, executorFactory);
746744#endif
747745
748746 [self _initializeBridgeLocked: executorFactory];
@@ -1128,9 +1126,7 @@ - (void)executeSourceCode:(NSData *)sourceCode sync:(BOOL)sync
11281126 [self enqueueApplicationScript: sourceCode url: self .bundleURL onComplete: completion];
11291127 }
11301128
1131- if (self.devSettings .isDevModeEnabled ) { // TODO(OSS Candidate ISS#2710739)
1132- [self .devSettings setupHMRClientWithBundleURL: self .bundleURL];
1133- }
1129+ [self .devSettings setupHMRClientWithBundleURL: self .bundleURL];
11341130}
11351131
11361132#if RCT_DEV_MENU
0 commit comments