From a6143c1abb791507fee58d4bce7c5f6f5a966830 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Wed, 6 Jul 2022 07:27:21 -0600 Subject: [PATCH] Always group income --- web/pages/notifications.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web/pages/notifications.tsx b/web/pages/notifications.tsx index 569f8ef8..e20b6028 100644 --- a/web/pages/notifications.tsx +++ b/web/pages/notifications.tsx @@ -83,16 +83,16 @@ export default function Notifications() { {paginatedNotificationGroups.length === 0 && "You don't have any notifications. Try changing your settings to see more."} {paginatedNotificationGroups.map((notification) => - notification.notifications.length === 1 ? ( - - ) : notification.type === 'income' ? ( + notification.type === 'income' ? ( + ) : notification.notifications.length === 1 ? ( + ) : (