aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/Content.tsx
diff options
context:
space:
mode:
authorAshm Walia <ashmwalia@outlook.com>2021-01-16 09:44:41 -0800
committerAshm Walia <ashmwalia@outlook.com>2021-01-16 09:44:41 -0800
commitd85eaeb878cbbeedda860ee5809b81100c910af2 (patch)
tree6ef10bb63bde79ce166d9bc916feb5483dbf635b /src/components/profile/Content.tsx
parent72aabf60d815cdecf59aaef86df57be6a557efd0 (diff)
Done
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r--src/components/profile/Content.tsx12
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,