diff --git a/src/utils/notifications.ts b/src/utils/notifications.ts index 0a2dc618f..9ffbaab2d 100644 --- a/src/utils/notifications.ts +++ b/src/utils/notifications.ts @@ -78,9 +78,7 @@ export const raiseNativeNotification = (notifications: Notification[]) => { if (notifications.length === 1) { const notification = notifications[0]; - title = `${isWindows() ? '' : 'Gitify - '}${ - notification.repository.full_name - }`; + title = isWindows() ? '' : notification.repository.full_name; body = notification.subject.title; } else { title = 'Gitify';