From c9c6e44415275029880723d9114e03928efd8ad0 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Thu, 19 Sep 2024 05:29:12 -0400 Subject: [PATCH] refactor: native notification title (#1543) Signed-off-by: Adam Setch --- src/utils/notifications.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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';