We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e1363e commit c9c6e44Copy full SHA for c9c6e44
src/utils/notifications.ts
@@ -78,9 +78,7 @@ export const raiseNativeNotification = (notifications: Notification[]) => {
78
79
if (notifications.length === 1) {
80
const notification = notifications[0];
81
- title = `${isWindows() ? '' : 'Gitify - '}${
82
- notification.repository.full_name
83
- }`;
+ title = isWindows() ? '' : notification.repository.full_name;
84
body = notification.subject.title;
85
} else {
86
title = 'Gitify';
0 commit comments