From 83dafbfd7c88ab9bff8c002faa9001a42648d236 Mon Sep 17 00:00:00 2001 From: mengstabketemaw Date: Fri, 26 Jun 2026 16:17:04 +0300 Subject: [PATCH] fix: update professionId mapping in ProfilePage commit --- apps/portal/src/app/features/profile/pages/ProfilePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/portal/src/app/features/profile/pages/ProfilePage.tsx b/apps/portal/src/app/features/profile/pages/ProfilePage.tsx index b2905384f..16c967533 100644 --- a/apps/portal/src/app/features/profile/pages/ProfilePage.tsx +++ b/apps/portal/src/app/features/profile/pages/ProfilePage.tsx @@ -145,7 +145,7 @@ export function ProfilePage() { .unwrap() .then((data) => { setLoadedProfile({ - professionId: data.profession?.id || '', + professionId: data.professionId || data.profession?.id || '', firstName: data.firstName || '', middleName: data.middleName || '', lastName: data.lastName || '',