diff --git a/discord/src/overlays/Notification.tsx b/discord/src/overlays/Notification.tsx index eb2feac..c15678f 100644 --- a/discord/src/overlays/Notification.tsx +++ b/discord/src/overlays/Notification.tsx @@ -43,28 +43,21 @@ export default function NotificationOverlay({ isVisible ? 'translate-y-0 opacity-100' : 'translate-y-3 opacity-0' }`} > -
{notification.author.username}
- {(notification.guildName || notification.channelName) && ( -- {notification.guildName && {notification.guildName}} - {notification.guildName && notification.channelName && •} - {notification.channelName && #{notification.channelName}} -
- )} -{notification.author.username}
+{notification.content}
+ {(notification.guildName || notification.channelName) && ( ++ {notification.guildName ?? ''} + {notification.guildName && notification.channelName ? ' | ' : ''} + {notification.channelName ? `#${notification.channelName}` : ''} +
+ )}