import { FormattedMessage } from "react-intl"; import { useNavigate } from "react-router-dom"; interface AccountNameProps { name?: string; link?: boolean; } export default function AccountName({ name = "", link = true }: AccountNameProps) { const navigate = useNavigate(); return ( <>