From 9df2deaa0bd4270dc258be8a524b9435f7e5fd7e Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 28 Sep 2025 21:01:48 +0000 Subject: [PATCH] Move join date below location --- src/pages/Profile.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 && }
}