Reorder profile metadata

This commit is contained in:
gpt-engineer-app[bot]
2025-09-28 21:03:02 +00:00
parent 9df2deaa0b
commit 0f2841f8aa

View File

@@ -387,15 +387,15 @@ 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" />
{profile.preferred_pronouns} {profile.preferred_pronouns}
</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 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} />}
</div> </div>