Skip to content

Commit

Permalink
fix(error-page): ajout d'un titre à la page d'erreur
Browse files Browse the repository at this point in the history
  • Loading branch information
FaXaq committed Nov 19, 2024
1 parent 07b09bc commit c84b3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/global-error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function GlobalError({ error }: { error: Error & { digest?: strin
<html>
<body>
{/* This is the default Next.js error component but it doesn't allow omitting the statusCode property yet. */}
<NextError statusCode={500} />
<NextError statusCode={500} withDarkMode={false} title="Orion a rencontré une erreur" />
</body>
</html>
);
Expand Down

0 comments on commit c84b3e5

Please sign in to comment.