Display a 404 on people/:id and company/:id when id does not exist (#1468)

* Display 404 while person or company not found

* Display 404 while person or company not found

* Issue solved
This commit is contained in:
Pepe
2023-09-06 16:46:40 +02:00
committed by GitHub
parent d6b89359f5
commit a902b7c6fe
3 changed files with 24 additions and 5 deletions

View File

@ -24,4 +24,5 @@ export enum AppPath {
// 404 page not found
NotFoundWildcard = '*',
NotFound = '/not-found',
}