From 95023b181ce6fd08bd689165e74c2142ead6e660 Mon Sep 17 00:00:00 2001 From: codytseng Date: Wed, 7 Jan 2026 21:51:08 +0800 Subject: [PATCH] fix: ensure trust score check excludes Zap notifications --- src/components/NotificationList/NotificationItem/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NotificationList/NotificationItem/index.tsx b/src/components/NotificationList/NotificationItem/index.tsx index 9908640..9b936aa 100644 --- a/src/components/NotificationList/NotificationItem/index.tsx +++ b/src/components/NotificationList/NotificationItem/index.tsx @@ -42,7 +42,7 @@ export function NotificationItem({ } // Check trust score - if (!(await meetsMinTrustScore(notification.pubkey))) { + if (notification.kind !== kinds.Zap && !(await meetsMinTrustScore(notification.pubkey))) { setCanShow(false) return }