From 2d2fdfb2a5d8a0c8cca77960002b07c78a70ed1c Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Thu, 26 Feb 2026 19:51:45 -0600 Subject: [PATCH] Fix missing divider border between notification items --- src/pages/NotificationsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/NotificationsPage.tsx b/src/pages/NotificationsPage.tsx index abee588e..77f0ea1f 100644 --- a/src/pages/NotificationsPage.tsx +++ b/src/pages/NotificationsPage.tsx @@ -184,7 +184,7 @@ function formatSats(sats: number): string { /** Wrapper that adds the new-notification indicator. */ function NotificationWrapper({ isNew, children }: { isNew: boolean; children: React.ReactNode }) { return ( -
+
{isNew && (
)}