From 003cef521e40367325802d746b80d10821797ce9 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Wed, 18 Sep 2024 23:01:38 -0400 Subject: [PATCH] refactor: native notification title 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';