import { useProfile } from "@utils/hooks/useProfile"; import { shortenKey } from "@utils/shortenKey"; export function MentionUser({ pubkey }: { pubkey: string }) { const { user } = useProfile(pubkey); return ( @{user?.name || user?.displayName || shortenKey(pubkey)} ); }