import { Link } from 'react-router-dom'; import { Image } from '@shared/image'; import { useProfile } from '@utils/hooks/useProfile'; import { displayNpub } from '@utils/shortenKey'; export function ChatSidebar({ pubkey }: { pubkey: string }) { const { user } = useProfile(pubkey); return (
{user?.bio || user?.about}
View full profile