Skip to content

Commit

Permalink
[Feat] Friends Managment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nouakchi committed May 8, 2024
1 parent 54d5c88 commit ec86a24
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/front-end/src/components/inviteFriend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ interface Friend_ {
user: User;
is_accepted: boolean;
is_user_from: boolean;
blocked: boolean
blocked: boolean;
}

export default function InviteFriend( {show, close}: Props) {
Expand Down Expand Up @@ -102,7 +102,8 @@ export default function InviteFriend( {show, close}: Props) {
image_url: user.image_url,
},
is_accepted: false,
is_user_from: false
is_user_from: false,
blocked: false
}));
setsearchedFriends(transData);

Expand Down

0 comments on commit ec86a24

Please sign in to comment.