Skip to content

Commit c9c6e44

Browse files
authored
refactor: native notification title (#1543)
Signed-off-by: Adam Setch <[email protected]>
1 parent 0e1363e commit c9c6e44

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/utils/notifications.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,7 @@ export const raiseNativeNotification = (notifications: Notification[]) => {
7878

7979
if (notifications.length === 1) {
8080
const notification = notifications[0];
81-
title = `${isWindows() ? '' : 'Gitify - '}${
82-
notification.repository.full_name
83-
}`;
81+
title = isWindows() ? '' : notification.repository.full_name;
8482
body = notification.subject.title;
8583
} else {
8684
title = 'Gitify';

0 commit comments

Comments
 (0)