Skip to content

Commit

Permalink
Update RCTDevMenu.mm (#35910)
Browse files Browse the repository at this point in the history
Summary:
Fixed typo with the word "running" in 2 places when failing to open Flipper.

Fixes #35899 .

Changelog:
[Internal] [Changed] - Fix typo with the word "running" when failing to open Flipper

Pull Request resolved: #35910

Reviewed By: christophpurrer

Differential Revision: D42641042

Pulled By: sshic

fbshipit-source-id: acebb26ab921e98235c4f8e8535fa89be2ffa8cd
  • Loading branch information
Sheikh-JamirAlam authored and facebook-github-bot committed Jan 23, 2023
1 parent a69a924 commit f3155d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions React/CoreModules/RCTDevMenu.mm
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ - (void)setDefaultJSBundle
[RCTInspectorDevServerHelper
openURL:@"flipper://null/Hermesdebuggerrn?device=React%20Native"
withBundleURL:bundleManager.bundleURL
withErrorMessage:@"Failed to open Flipper. Please check that Metro is runnning."];
withErrorMessage:@"Failed to open Flipper. Please check that Metro is running."];
}]];

[items addObject:[RCTDevMenuItem
Expand All @@ -282,7 +282,7 @@ - (void)setDefaultJSBundle
[RCTInspectorDevServerHelper
openURL:@"flipper://null/React?device=React%20Native"
withBundleURL:bundleManager.bundleURL
withErrorMessage:@"Failed to open Flipper. Please check that Metro is runnning."];
withErrorMessage:@"Failed to open Flipper. Please check that Metro is running."];
}]];
} else if (devSettings.isRemoteDebuggingAvailable) {
#else
Expand Down

0 comments on commit f3155d0

Please sign in to comment.