Skip to content

Commit 7252613

Browse files
committed
Reorder about
1 parent 5fb0051 commit 7252613

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/components/profile-about.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,12 @@ export default function ProfileAbout(props: {
5858
>
5959
<Seeking profile={profile}/>
6060
<RelationshipType profile={profile}/>
61-
<HasKids profile={profile}/>
61+
<Education profile={profile}/>
62+
<Occupation profile={profile}/>
6263
<AboutRow
6364
icon={<RiScales3Line className="h-5 w-5"/>}
6465
text={profile.political_beliefs?.map(belief => REVERTED_POLITICAL_CHOICES[belief])}
6566
/>
66-
<Education profile={profile}/>
67-
<Occupation profile={profile}/>
6867
<AboutRow
6968
icon={<PiHandsPrayingBold className="h-5 w-5"/>}
7069
text={profile.religious_beliefs}
@@ -81,6 +80,7 @@ export default function ProfileAbout(props: {
8180
icon={<PiPlantBold className="h-5 w-5"/>}
8281
text={profile.is_vegetarian_or_vegan ? 'Vegetarian/Vegan' : null}
8382
/>
83+
<HasKids profile={profile}/>
8484
<WantsKids profile={profile}/>
8585
{!isCurrentUser && <LastOnline lastOnlineTime={userActivity?.last_online_time}/>}
8686
<UserHandles links={profile.user.link}/>

0 commit comments

Comments
 (0)