import { displayNpub } from "@/commons"; import { LumeWindow, useProfile } from "@/system"; import { memo } from "react"; export const MentionUser = memo(function MentionUser({ pubkey, }: { pubkey: string }) { const { isLoading, profile } = useProfile(pubkey); return ( ); });