From 63e9d5a95eb367c92ae6d850ae3915e281a9ba93 Mon Sep 17 00:00:00 2001 From: codytseng Date: Wed, 30 Jul 2025 10:58:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/providers/UserTrustProvider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/UserTrustProvider.tsx b/src/providers/UserTrustProvider.tsx index bf09c81..9260884 100644 --- a/src/providers/UserTrustProvider.tsx +++ b/src/providers/UserTrustProvider.tsx @@ -55,7 +55,7 @@ export function UserTrustProvider({ children }: { children: React.ReactNode }) { const isUserTrusted = useCallback( (pubkey: string) => { - if (!currentPubkey) return true + if (!currentPubkey || pubkey === currentPubkey) return true return wotSet.has(pubkey) }, [currentPubkey]