diff --git a/shell/browser/native_window_mac.mm b/shell/browser/native_window_mac.mm index 04ea63270a7e..a6a58e43115c 100644 --- a/shell/browser/native_window_mac.mm +++ b/shell/browser/native_window_mac.mm @@ -457,11 +457,7 @@ void NativeWindowMac::Show() { // Panels receive key focus when shown but should not activate the app. if (!IsPanel()) { - if (@available(macOS 14.0, *)) { - [[NSApplication sharedApplication] activate]; - } else { - [[NSApplication sharedApplication] activateIgnoringOtherApps:YES]; - } + [[NSApplication sharedApplication] activateIgnoringOtherApps:YES]; } [window_ makeKeyAndOrderFront:nil]; }