From ae915d90e1fc7c218b05b3c45a28036540b7fc7b Mon Sep 17 00:00:00 2001 From: Vamshi-Microsoft Date: Mon, 16 Jun 2025 08:50:34 +0000 Subject: [PATCH] Update NoPage component to display full 404 error message --- code/frontend/src/pages/NoPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/frontend/src/pages/NoPage.tsx b/code/frontend/src/pages/NoPage.tsx index 286ca8915..18d60599e 100644 --- a/code/frontend/src/pages/NoPage.tsx +++ b/code/frontend/src/pages/NoPage.tsx @@ -1,5 +1,5 @@ const NoPage = () => { - return

404

; + return

404 Page Not found

; }; export default NoPage;