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 }