Skip to content

Commit

Permalink
add achievements
Browse files Browse the repository at this point in the history
  • Loading branch information
heidi committed Oct 29, 2023
1 parent 7c23059 commit ab9b6f7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions DineDevineUI/src/pages/ProfilePage.tsx
Expand Up @@ -104,7 +104,7 @@ const ProfilePage: React.FC<Profile> = (props: Profile) => {
</IonRow>
<IonRow>
<IonCol>
<IonCard className = "interests-card">
<IonCard>
<h1 className={"ion-margin-start"}>Interests</h1>
<div className={"ion-margin-start ion-margin-bottom"}>
{interestsTAG.map((tag, idx) => <IonChip key={tag+idx} >{tag}</IonChip>)}
Expand All @@ -122,7 +122,7 @@ const ProfilePage: React.FC<Profile> = (props: Profile) => {
</IonRow>
<IonRow>
<IonCol>
<IonCard className = "dislikes-card">
<IonCard>
<h1 className={"ion-margin-start"}>Dislikes</h1>
<div className={"ion-margin-start ion-margin-bottom"}>
{dislikeTAG.map((tag, idx) => <IonChip key={tag+idx} >{tag}</IonChip>)}
Expand All @@ -135,7 +135,7 @@ const ProfilePage: React.FC<Profile> = (props: Profile) => {
</IonContent>
</IonPopover>
</div>
</IonCard
</IonCard>
</IonCol>
</IonRow>
<IonRow>
Expand Down Expand Up @@ -177,7 +177,6 @@ const ProfilePage: React.FC<Profile> = (props: Profile) => {
</IonCard>
</IonCol>
</IonRow>

</IonGrid>
</IonContent>
</IonPage>
Expand Down

0 comments on commit ab9b6f7

Please sign in to comment.