diff --git a/frontend/src/pages/error/ErrorPage.tsx b/frontend/src/pages/error/ErrorPage.tsx index 3fc70293..19b27c9c 100644 --- a/frontend/src/pages/error/ErrorPage.tsx +++ b/frontend/src/pages/error/ErrorPage.tsx @@ -4,13 +4,13 @@ import { useTranslation } from "react-i18next"; /** * This component will be rendered when an error occurs. - * @param statusCode The status code of the error. - * @param statusTitle The name of the error. - * @param message Additional information about the error. + * @param statusCode - The status code of the error + * @param statusTitle - The name of the error + * @param message - Additional information about the error * @returns The ErrorPage component */ export function ErrorPage( - { statusCode, statusTitle, message }: { statusCode: string, statusTitle: string, message: string} + { statusCode, statusTitle, message }: { statusCode: string, statusTitle: string, message: string } ): JSX.Element { const { t } = useTranslation();