From 6516c0b1b13c3c625f931f7a9e78e6ddc6faf300 Mon Sep 17 00:00:00 2001 From: Bill Date: Wed, 16 Mar 2022 18:18:46 -0400 Subject: [PATCH] Fix amount case for bubble alerts --- .../notification-center/NotificationCenterMessageHandler.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);