import { Image } from "@shared/image"; import { DEFAULT_AVATAR } from "@stores/constants"; import { useProfile } from "@utils/hooks/useProfile"; export function InactiveAccount({ data }: { data: any }) { const { user } = useProfile(data.npub); return (
{data.npub}
); }