From 2070e4d9b7a0fe8c128d204dfacb3bff0fec0088 Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Sat, 28 Mar 2026 15:38:42 +0530 Subject: [PATCH] fix: make career field read-only in ProfileSettingsForm for agents --- src/components/settings/ProfileSettingsForm.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/settings/ProfileSettingsForm.tsx b/src/components/settings/ProfileSettingsForm.tsx index 171c95f..4b56faa 100644 --- a/src/components/settings/ProfileSettingsForm.tsx +++ b/src/components/settings/ProfileSettingsForm.tsx @@ -455,7 +455,7 @@ export function ProfileSettingsForm({ - {/* Career (only for agents) */} + {/* Career (only for agents, read-only - set during onboarding) */} {(session?.user as any)?.role === 'AGENT' && (
)}