This commit is contained in:
Bill 2022-02-22 21:41:58 -05:00
parent 73e79c98c0
commit 3fbc7beea7
2 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@ export const NotificationCenterView: FC<NotificationCenterViewProps> = props =>
const onNotificationAlertEvent = useCallback((event: NotificationAlertEvent) => const onNotificationAlertEvent = useCallback((event: NotificationAlertEvent) =>
{ {
console.log(event);
const alertItem = new NotificationAlertItem(event.messages, event.alertType, event.clickUrl, event.clickUrlText, event.title, event.imageUrl); const alertItem = new NotificationAlertItem(event.messages, event.alertType, event.clickUrl, event.clickUrlText, event.title, event.imageUrl);
setAlerts(prevValue => [ alertItem, ...prevValue ]); setAlerts(prevValue => [ alertItem, ...prevValue ]);
@ -30,7 +29,6 @@ export const NotificationCenterView: FC<NotificationCenterViewProps> = props =>
const onNotificationBubbleEvent = useCallback((event: NotificationBubbleEvent) => const onNotificationBubbleEvent = useCallback((event: NotificationBubbleEvent) =>
{ {
console.log(event);
const notificationItem = new NotificationBubbleItem(event.message, event.notificationType, event.imageUrl, event.linkUrl); const notificationItem = new NotificationBubbleItem(event.message, event.notificationType, event.imageUrl, event.linkUrl);
setBubbleAlerts(prevValue => [ notificationItem, ...prevValue ]); setBubbleAlerts(prevValue => [ notificationItem, ...prevValue ]);

View File

@ -80,6 +80,7 @@
} }
.fas, .fas,
.svg-inline--fa,
.nitro-currency-icon { .nitro-currency-icon {
position: absolute; position: absolute;
right: 8px; right: 8px;