diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-18 20:09:45 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-18 20:09:45 -0500 |
commit | f931ca29805be64ed4b8835a4523da00dfcbb0ad (patch) | |
tree | 3f27c8eb3c1dcb93053a9c3ae5f4020c72221e24 /src/components | |
parent | cd10595e8675c8bcf32399a910f90a626d706f3a (diff) |
finished?!
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/suggestedPeople/MutualFriends.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/suggestedPeople/MutualFriends.tsx b/src/components/suggestedPeople/MutualFriends.tsx index 283ee6c5..fdda104a 100644 --- a/src/components/suggestedPeople/MutualFriends.tsx +++ b/src/components/suggestedPeople/MutualFriends.tsx @@ -12,7 +12,10 @@ interface MutualFriendsProps { friends: ProfilePreviewType[]; } -const MutualFriends: React.FC<MutualFriendsProps> = ({user, friends}) => { +const MutualFriends: React.FC<MutualFriendsProps> = ({ + user, + friends, +}): JSX.Element => { // Getting list of first 4 friends to display on suggested people screen const friendsPreview = friends.slice(0, 4); |