From 3fbc7beea7a13b8f4d2ac0c36417d23e69363340 Mon Sep 17 00:00:00 2001 From: Bill Date: Tue, 22 Feb 2022 21:41:58 -0500 Subject: [PATCH] Changes --- src/views/notification-center/NotificationCenterView.tsx | 2 -- src/views/room/widgets/context-menu/ContextMenu.scss | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/notification-center/NotificationCenterView.tsx b/src/views/notification-center/NotificationCenterView.tsx index b1458826..b1a7aedc 100644 --- a/src/views/notification-center/NotificationCenterView.tsx +++ b/src/views/notification-center/NotificationCenterView.tsx @@ -20,7 +20,6 @@ export const NotificationCenterView: FC = props => const onNotificationAlertEvent = useCallback((event: NotificationAlertEvent) => { - console.log(event); const alertItem = new NotificationAlertItem(event.messages, event.alertType, event.clickUrl, event.clickUrlText, event.title, event.imageUrl); setAlerts(prevValue => [ alertItem, ...prevValue ]); @@ -30,7 +29,6 @@ export const NotificationCenterView: FC = props => const onNotificationBubbleEvent = useCallback((event: NotificationBubbleEvent) => { - console.log(event); const notificationItem = new NotificationBubbleItem(event.message, event.notificationType, event.imageUrl, event.linkUrl); setBubbleAlerts(prevValue => [ notificationItem, ...prevValue ]); diff --git a/src/views/room/widgets/context-menu/ContextMenu.scss b/src/views/room/widgets/context-menu/ContextMenu.scss index b9e313d1..a78566cf 100644 --- a/src/views/room/widgets/context-menu/ContextMenu.scss +++ b/src/views/room/widgets/context-menu/ContextMenu.scss @@ -80,6 +80,7 @@ } .fas, + .svg-inline--fa, .nitro-currency-icon { position: absolute; right: 8px;