Move join date below location

This commit is contained in:
gpt-engineer-app[bot]
2025-09-28 21:01:48 +00:00
parent 8c495d5660
commit 9df2deaa0b

View File

@@ -387,6 +387,9 @@ export default function Profile() {
})} })}
</div> </div>
{/* Show personal location if available and privacy allows */}
{profile.personal_location && <PersonalLocationDisplay personalLocation={profile.personal_location} userId={profile.user_id} isOwnProfile={isOwnProfile} />}
{/* Show pronouns if enabled */} {/* Show pronouns if enabled */}
{profile.show_pronouns && profile.preferred_pronouns && <div className="flex items-center gap-1"> {profile.show_pronouns && profile.preferred_pronouns && <div className="flex items-center gap-1">
<User className="w-4 h-4" /> <User className="w-4 h-4" />
@@ -395,9 +398,6 @@ export default function Profile() {
{/* Show location only if privacy allows */} {/* Show location only if privacy allows */}
{profile.location && <LocationDisplay location={profile.location} userId={profile.user_id} isOwnProfile={isOwnProfile} />} {profile.location && <LocationDisplay location={profile.location} userId={profile.user_id} isOwnProfile={isOwnProfile} />}
{/* Show personal location if available and privacy allows */}
{profile.personal_location && <PersonalLocationDisplay personalLocation={profile.personal_location} userId={profile.user_id} isOwnProfile={isOwnProfile} />}
</div> </div>
</div>} </div>}
</div> </div>