From be7869dd6c9a3fb2c70b19fed0427bae8d4f7284 Mon Sep 17 00:00:00 2001 From: karan-sanskar Date: Sun, 20 Jul 2025 16:03:47 +0530 Subject: [PATCH] [Issue-41]: Make the my settings rediret to the user settings /me page --- frontend/src/components/layout/navbar.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/layout/navbar.tsx b/frontend/src/components/layout/navbar.tsx index f75d604..7d92bb9 100644 --- a/frontend/src/components/layout/navbar.tsx +++ b/frontend/src/components/layout/navbar.tsx @@ -18,8 +18,10 @@ import { const userProfileItems: UserProfileItem[] = [ { name: "Frappe Dashboard", link: "/app/quickdos" }, { name: "Apps", link: "/apps/" }, - { name: "My Profile", link: "/app/user-profile" }, - { name: "My Settings", link: "/app/user" }, + // TODO : CREATE A USER PROFILE PAGE IN REACT + { name: "My Profile", link: "/me" }, + // TODO : CREATE A USER SETTINGS PAGE IN REACT WITH BACKEND + // { name: "My Settings", link: "/app/user" }, { name: "Logout", link: "/quickdo/auth/logout" }, ];