import { ImageWithFallback } from '@components/imageWithFallback'; import { DEFAULT_AVATAR } from '@stores/constants'; import { useMetadata } from '@utils/metadata'; import { truncate } from '@utils/truncate'; export const UserFollow = ({ pubkey }: { pubkey: string }) => { const profile = useMetadata(pubkey); return (
{profile?.display_name || profile?.name} {truncate(pubkey, 16, ' .... ')}
); };