From c2be2d211d0068e8dc169d460898f4ed8e855b7a Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Wed, 29 Oct 2025 04:04:50 +0300 Subject: [PATCH] fix: Correct profile settings route from /profile-settings to /profile/settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue: Edit Profile button returned 404 error Root Cause: - App.tsx route: /profile-settings (with dash) - Dashboard navigate: /profile/settings (with slash) - Route mismatch caused 404 Changes: - Updated App.tsx route: /profile-settings → /profile/settings - Updated AppLayout.tsx Settings button navigation All profile settings links now use consistent /profile/settings route 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/App.tsx | 2 +- src/components/AppLayout.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 86e69395..25b7c050 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -39,7 +39,7 @@ function App() { } /> - diff --git a/src/components/AppLayout.tsx b/src/components/AppLayout.tsx index bd5c86d1..72977fa7 100644 --- a/src/components/AppLayout.tsx +++ b/src/components/AppLayout.tsx @@ -192,8 +192,8 @@ const AppLayout: React.FC = () => { -