Skip to content

Commit

Permalink
fix for age/pronouns in friend ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Nibirian9 committed Mar 8, 2024
1 parent ed616b5 commit 6a8ed64
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/app/src/pages/app/FriendProfile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export default function Profile () {

const { handleDeleteFriendship } = useHandleFriendsRequests()

console.log("friend:", friend);
const unfriend = () => {
handleDeleteFriendship({ friendship })
}
Expand Down Expand Up @@ -94,10 +95,10 @@ export default function Profile () {
<Text>Location: {friend.location || "Not specified"}</Text>
</Group>
<Group>
<Text>Age: {friend.age || "Not specified"}</Text>
<Text>Age: {friend.details.age || "Not specified"}</Text>
</Group>
<Group>
<Text>Pronouns: {friend.pronouns || "Not specified"}</Text>
<Text>Pronouns: {friend.details.pronouns || "Not specified"}</Text>
</Group>
</>}
<>
Expand Down

0 comments on commit 6a8ed64

Please sign in to comment.