From 9815d38f1f425f8005487339a7efaf47f3f5209c Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Wed, 1 Jun 2022 13:05:50 -0700 Subject: [PATCH] Destroy the blue bubble --- web/components/notifications-icon.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/web/components/notifications-icon.tsx b/web/components/notifications-icon.tsx index 95f7b721..8d136883 100644 --- a/web/components/notifications-icon.tsx +++ b/web/components/notifications-icon.tsx @@ -21,14 +21,19 @@ export default function NotificationsIcon(props: { className?: string }) { if (user) return listenForNotifications(user.id, setNotifications, true) }, [user]) + // mqp - kill this until you can control what notifications you get, or + // until the defaults aren't so spammy + const notificationCountBubble = null + // const notificationCountBubble = ( + //
+ // {notifications && notifications.length} + //
+ // ) + return (
- {notifications && notifications.length > 0 && ( -
- {notifications.length} -
- )} + {notifications && notifications.length && notificationCountBubble}