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}