Skip to content

Commit

Permalink
fix: don't include the version number in process.title because it sho…
Browse files Browse the repository at this point in the history
…ws in the menubar in macOS Sonoma COMPASS-7513 (#5497)

don't include the version number in process.title because it shows in the menubar
  • Loading branch information
lerouxb authored Feb 26, 2024
1 parent 1d48329 commit 982347f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compass/src/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ initializeElectronRemote();
installEarlyLoggingListener();
installEarlyOpenUrlListener();

process.title = `${app.getName()} ${app.getVersion()}`;
process.title = app.getName();

void main();

Expand Down

0 comments on commit 982347f

Please sign in to comment.