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]