We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3011e7a commit 0f27091Copy full SHA for 0f27091
front_end/entrypoints/rn_fusebox/FuseboxWindowTitleManager.ts
@@ -41,7 +41,10 @@ export class FuseboxWindowTitleManager {
41
if (this.#suffix) {
42
parts.push(this.#suffix);
43
}
44
- parts.push('- React Native DevTools');
+ // On macOS, window titles conventionally omit the app name
45
+ if (!(navigator.userAgent.includes('Electron') && navigator.userAgent.includes('Macintosh'))) {
46
+ parts.push('- React Native DevTools');
47
+ }
48
49
document.title = parts.join(' ');
50
0 commit comments