import { ImageWithFallback } from '@components/imageWithFallback'; import { DEFAULT_AVATAR } from '@stores/constants'; import { truncate } from '@utils/truncate'; import { useRouter } from 'next/navigation'; export const ChatModalUser = ({ data }: { data: any }) => { const router = useRouter(); const profile = JSON.parse(data.metadata); const openNewChat = () => { router.push(`/chats/${data.pubkey}`); }; return (
{profile?.display_name || profile?.name} {truncate(data.pubkey, 16, ' .... ')}
); };