Skip to content

Commit

Permalink
feat: remove app name from native notification title (#54)
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Setch <adam.setch@outlook.com>
  • Loading branch information
setchy authored Sep 18, 2024
1 parent 7e7ad2b commit 4e17d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const raiseNativeNotification = (

if (notifications.length === 1) {
const notification = notifications[0];
title = `${isWindows() ? '' : 'Atlasify - '}${notification.title}`;
title = isWindows() ? '' : notification.title;
body = notification.entity.title; // TODO Confirm this mapping
} else {
title = 'Atlasify';
Expand Down

0 comments on commit 4e17d20

Please sign in to comment.