We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c11c5 commit 57004ddCopy full SHA for 57004dd
packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm
@@ -535,7 +535,11 @@ - (void)_loadJSBundle:(NSURL *)sourceURL
535
{
536
id<RCTDevLoadingViewProtocol> loadingView =
537
(id<RCTDevLoadingViewProtocol>)[_turboModuleManager moduleForName:"DevLoadingView"];
538
- [loadingView showWithURL:sourceURL];
+ // When the bundleFilePath is set in the RCTCustomBundleConfiguration it on purpose does not run the packager connection
539
+ // so we don't show the message.
540
+ if (!_bridgeModuleDecorator.bundleManager.customBundleConfig.bundleFilePath) {
541
+ [loadingView showWithURL:sourceURL];
542
+ }
543
}
544
#endif
545
0 commit comments