diff --git a/src/pages/Profile.tsx b/src/pages/Profile.tsx index a3ba384f..c8c5f84d 100644 --- a/src/pages/Profile.tsx +++ b/src/pages/Profile.tsx @@ -387,6 +387,9 @@ export default function Profile() { })} + {/* Show personal location if available and privacy allows */} + {profile.personal_location && } + {/* Show pronouns if enabled */} {profile.show_pronouns && profile.preferred_pronouns &&
@@ -395,9 +398,6 @@ export default function Profile() { {/* Show location only if privacy allows */} {profile.location && } - - {/* Show personal location if available and privacy allows */} - {profile.personal_location && }
}