File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -286,15 +286,15 @@ - (NSArray *)menuItems
286
286
}]];
287
287
} else {
288
288
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" ;
290
290
[items addObject: [[RCTDevMenuItem alloc ] initWithTitle: debugTitleChrome handler: ^{
291
291
self.executorClass = isDebuggingInChrome ? Nil : chromeExecutorClass;
292
292
}]];
293
293
}
294
294
295
295
Class safariExecutorClass = NSClassFromString (@" RCTWebViewExecutor" );
296
296
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" ;
298
298
[items addObject: [[RCTDevMenuItem alloc ] initWithTitle: debugTitleSafari handler: ^{
299
299
self.executorClass = isDebuggingInSafari ? Nil : safariExecutorClass;
300
300
}]];
You can’t perform that action at this time.
0 commit comments