diff --git a/src/components/notification-center/NotificationCenterMessageHandler.tsx b/src/components/notification-center/NotificationCenterMessageHandler.tsx index 17b8c70e..d10ae4b3 100644 --- a/src/components/notification-center/NotificationCenterMessageHandler.tsx +++ b/src/components/notification-center/NotificationCenterMessageHandler.tsx @@ -69,7 +69,7 @@ export const NotificationCenterMessageHandler: FC<{}> = props => const imageUrl = GetConfiguration('currency.asset.icon.url', '').replace('%type%', parser.type.toString()); - NotificationUtilities.showSingleBubble(LocalizeText('notifications.text.loyalty.received', [ 'amount' ], [ parser.amountChanged.toString() ]), NotificationBubbleType.INFO, imageUrl); + NotificationUtilities.showSingleBubble(LocalizeText('notifications.text.loyalty.received', [ 'AMOUNT' ], [ parser.amountChanged.toString() ]), NotificationBubbleType.INFO, imageUrl); }, []); UseMessageEventHook(ActivityPointNotificationMessageEvent, onActivityPointNotificationMessageEvent);