diff --git a/src/components/nostr/nip05.tsx b/src/components/nostr/nip05.tsx index b954e47..d4c247d 100644 --- a/src/components/nostr/nip05.tsx +++ b/src/components/nostr/nip05.tsx @@ -1,6 +1,5 @@ import { useNip05 } from "@/hooks/useNip05"; import { ProfileContent } from "applesauce-core/helpers"; -import { isGrimoireMember } from "@/lib/grimoire-members"; export function QueryNip05({ pubkey, @@ -21,12 +20,6 @@ export default function Nip05({ pubkey: string; profile: ProfileContent; }) { - // Grimoire members don't show NIP-05 here (handled by UserName component) - if (isGrimoireMember(pubkey)) { - return null; - } - - // Show regular NIP-05 if available if (!profile?.nip05) return null; return ; }