import { Image } from '@shared/image'; import { DEFAULT_AVATAR, IMGPROXY_URL } from '@stores/constants'; import { useProfile } from '@utils/hooks/useProfile'; import dayjs from 'dayjs'; import relativeTime from 'dayjs/plugin/relativeTime'; dayjs.extend(relativeTime); export function NoteRepostUser({ pubkey, time }: { pubkey: string; time: number }) { const { user } = useProfile(pubkey); return (