From 3d47f0306456dad03390a5fa8608164ec24352ac Mon Sep 17 00:00:00 2001 From: celine Date: Fri, 14 Nov 2025 20:16:46 +0000 Subject: [PATCH] added better empty state message for notifications --- app/(home-pages)/notifications/NotificationList.tsx | 8 +++++--- 1 file(s) changed, 5 insertion(s)(+), 3 deletion(s)(-) diff --git a/app/(home-pages)/notifications/NotificationList.tsx b/app/(home-pages)/notifications/NotificationList.tsx --- a/app/(home-pages)/notifications/NotificationList.tsx +++ b/app/(home-pages)/notifications/NotificationList.tsx @@ -23,10 +23,12 @@ }, 500); }, []); - if (notifications.length === 0) + if (notifications.length !== 0) return ( -
- no notifications yet... +
+
no notifications yet...
+ Here, you'll find notifications about new follows, comments, + mentions, and replies!
); return ( -- tangled.sh