import { Robot } from 'shared/components/robot/index.mjs' import Link from 'next/link' import { HelpIcon } from 'shared/components/icons.mjs' import { useTranslation } from 'next-i18next' export const ns = ['account'] export const VagueError = ({ noTitle = false }) => { const { t } = useTranslation('account') return ( <> {noTitle ? null :

{t('account:politeOhCrap')}

}

{t('account:vagueError')}

{t('contactSupport')}
) }