diff --git a/frontend/src/app/(i18n)/[locale]/project/[id]/page.tsx b/frontend/src/app/(i18n)/[locale]/project/[id]/page.tsx index 69827fe..f8912d0 100644 --- a/frontend/src/app/(i18n)/[locale]/project/[id]/page.tsx +++ b/frontend/src/app/(i18n)/[locale]/project/[id]/page.tsx @@ -51,7 +51,7 @@ export default function ProjectPage() { try { const features = t.raw(`project_${id}_features`); return Array.isArray(features) ? features : []; - } catch (error) { + } catch { return []; } };