import { Box, Typography } from "@mui/material"; import { FallbackProps } from "react-error-boundary"; import { useTranslation } from "react-i18next"; type Props = Partial; export const ApologyPage = ({ error }: Props) => { let message = error.message || error.response?.data; const { t } = useTranslation(); return ( {t(message.toLowerCase())} ); };