fix(frontend): remove debug console.logs

This commit is contained in:
sam 2024-09-26 15:26:37 +02:00
parent df93f28273
commit e7e4937082
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
3 changed files with 0 additions and 6 deletions

View file

@ -99,8 +99,6 @@ export function ErrorBoundary() {
const error: any = useRouteError();
const { t } = useTranslation();
console.log(error);
const errorElem =
"code" in error && "message" in error ? (
<ApiErrorElem error={error as ApiError} />