Skip to content

Commit 982347f

Browse files
authored
fix: don't include the version number in process.title because it shows in the menubar in macOS Sonoma COMPASS-7513 (#5497)
don't include the version number in process.title because it shows in the menubar
1 parent 1d48329 commit 982347f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/compass/src/main/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ initializeElectronRemote();
2424
installEarlyLoggingListener();
2525
installEarlyOpenUrlListener();
2626

27-
process.title = `${app.getName()} ${app.getVersion()}`;
27+
process.title = app.getName();
2828

2929
void main();
3030

0 commit comments

Comments
 (0)