From 55eb8785907d82e1f17dcb84464d95ef843aae10 Mon Sep 17 00:00:00 2001 From: rzuasti Date: Sun, 7 Jun 2026 15:37:30 -0400 Subject: [PATCH] Reword empty new-notifications message Co-Authored-By: Claude Opus 4.8 --- frontend/lib/home/notifications_list.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/lib/home/notifications_list.dart b/frontend/lib/home/notifications_list.dart index 79ddcd1..8a9e765 100644 --- a/frontend/lib/home/notifications_list.dart +++ b/frontend/lib/home/notifications_list.dart @@ -321,7 +321,7 @@ class _NotificationsListState extends State } String _emptyMessage() => switch (_filter) { - _NotificationFilter.newOnly => 'No new notifications', + _NotificationFilter.newOnly => 'No news, good news?', _NotificationFilter.oldOnly => 'No old notifications', _NotificationFilter.all => 'No notifications yet', };