diff options
| -rw-r--r-- | thallium-frontend/src/pages/ErrorPage.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thallium-frontend/src/pages/ErrorPage.tsx b/thallium-frontend/src/pages/ErrorPage.tsx index bc842f4..916abc5 100644 --- a/thallium-frontend/src/pages/ErrorPage.tsx +++ b/thallium-frontend/src/pages/ErrorPage.tsx @@ -2,7 +2,7 @@ import { useRouteError, isRouteErrorResponse } from 'react-router-dom'; import Card from '../components/Card'; -const LandingPage = () => { +const ErrorPage = () => { const error = useRouteError(); let title = 'Unexpected Error', message, isUnexpected = false; @@ -34,4 +34,4 @@ const LandingPage = () => { </Card>; }; -export default LandingPage; +export default ErrorPage; |