File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -286,15 +286,15 @@ - (NSArray *)menuItems
286286 }]];
287287 } else {
288288 BOOL isDebuggingInChrome = _executorClass && _executorClass == chromeExecutorClass;
289- NSString *debugTitleChrome = isDebuggingInChrome ? @" Disable Chrome Debugging" : @" Debug in Chrome" ;
289+ NSString *debugTitleChrome = isDebuggingInChrome ? @" Stop Chrome Debugging" : @" Debug in Chrome" ;
290290 [items addObject: [[RCTDevMenuItem alloc ] initWithTitle: debugTitleChrome handler: ^{
291291 self.executorClass = isDebuggingInChrome ? Nil : chromeExecutorClass;
292292 }]];
293293 }
294294
295295 Class safariExecutorClass = NSClassFromString (@" RCTWebViewExecutor" );
296296 BOOL isDebuggingInSafari = _executorClass && _executorClass == safariExecutorClass;
297- NSString *debugTitleSafari = isDebuggingInSafari ? @" Disable Safari Debugging" : @" Debug in Safari" ;
297+ NSString *debugTitleSafari = isDebuggingInSafari ? @" Stop Safari Debugging" : @" Debug in Safari" ;
298298 [items addObject: [[RCTDevMenuItem alloc ] initWithTitle: debugTitleSafari handler: ^{
299299 self.executorClass = isDebuggingInSafari ? Nil : safariExecutorClass;
300300 }]];
You can’t perform that action at this time.
0 commit comments