🆙 Fixed some minor bugs

This commit is contained in:
duckietm
2026-04-08 14:06:25 +02:00
parent 4a492d7b44
commit 5bff312b3b
9 changed files with 109 additions and 86 deletions
@@ -45,7 +45,11 @@ export const NotificationBadgeReceivedBubbleView: FC<NotificationBadgeReceivedBu
{ item.iconUrl && <img alt="" className="no-select" src={ item.iconUrl } /> }
</Flex>
<Flex column gap={ 0 }>
<Text bold variant="white">{ LocalizeText('notification.badge.received') }</Text>
<Text bold variant="white">
{ item.senderName
? LocalizeText('notifications.text.received.badge', [ 'user_name' ], [ item.senderName ])
: LocalizeText('prereg.reward.you.received') }
</Text>
<Text variant="white" small>{ item.message }</Text>
</Flex>
</Flex>