diff options
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r-- | src/components/profile/Content.tsx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/components/profile/Content.tsx b/src/components/profile/Content.tsx index cc9849e6..9213e012 100644 --- a/src/components/profile/Content.tsx +++ b/src/components/profile/Content.tsx @@ -194,18 +194,6 @@ const Content: React.FC<ContentProps> = ({y, userXId, screenType}) => { }, [profile.profile_completion_stage, momentCategories]), ); - /** - * This hook is called on load of profile and when you update the friends list. - */ - // useEffect(() => { - // const isActuallyAFriend = friendsLoggedInUser.some( - // (friend) => friend.username === user.username, - // ); - // if (isFriend != isActuallyAFriend) { - // setIsFriend(isActuallyAFriend); - // } - // }, [friendsLoggedInUser]); - useEffect(() => { const isActuallyBlocked = blockedUsers.some( (cur_user) => user.username === cur_user.username, |