From e8e7ee605ccec075df96d82ee7cd18316167972e Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Mon, 23 Feb 2026 14:40:35 +0000 Subject: [PATCH] Remove app name title suffix under Electron + macOS --- .../entrypoints/rn_fusebox/FuseboxWindowTitleManager.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/front_end/entrypoints/rn_fusebox/FuseboxWindowTitleManager.ts b/front_end/entrypoints/rn_fusebox/FuseboxWindowTitleManager.ts index 5b51cfb8e41d..9c211da0020e 100644 --- a/front_end/entrypoints/rn_fusebox/FuseboxWindowTitleManager.ts +++ b/front_end/entrypoints/rn_fusebox/FuseboxWindowTitleManager.ts @@ -41,7 +41,10 @@ export class FuseboxWindowTitleManager { if (this.#suffix) { parts.push(this.#suffix); } - parts.push('- React Native DevTools'); + // On macOS, window titles conventionally omit the app name + if (!(navigator.userAgent.includes('Electron') && navigator.userAgent.includes('Macintosh'))) { + parts.push('- React Native DevTools'); + } document.title = parts.join(' '); }