mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 09:11:12 -05:00
Reorder profile metadata
This commit is contained in:
@@ -387,15 +387,15 @@ export default function Profile() {
|
||||
})}
|
||||
</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 */}
|
||||
{profile.show_pronouns && profile.preferred_pronouns && <div className="flex items-center gap-1">
|
||||
<User className="w-4 h-4" />
|
||||
{profile.preferred_pronouns}
|
||||
</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 */}
|
||||
{profile.location && <LocationDisplay location={profile.location} userId={profile.user_id} isOwnProfile={isOwnProfile} />}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user