diff options
author | Eric Bailey <git@esb.lol> | 2024-06-10 20:45:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-10 20:45:23 -0500 |
commit | 7cac413f3b397fee95681033f075d51c7c4ee153 (patch) | |
tree | 83a43b5254d1e45c26c758fe7a866ebc32b3e682 /src/components/ProfileHoverCard | |
parent | 212f5750e3f45b6b6f042058c1819ecd92346baa (diff) | |
download | voidsky-7cac413f3b397fee95681033f075d51c7c4ee153.tar.zst |
Fix undefined block (#4471)
* Fix undefined block (#4378) * Fix undefined block * Changing text and handling all blocks. * Tweaks * Hide follow button in hover card if user blocked --------- Co-authored-by: Josh <hi@oracularhades.com>
Diffstat (limited to 'src/components/ProfileHoverCard')
-rw-r--r-- | src/components/ProfileHoverCard/index.web.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/components/ProfileHoverCard/index.web.tsx b/src/components/ProfileHoverCard/index.web.tsx index 024867b1a..e85ad0c37 100644 --- a/src/components/ProfileHoverCard/index.web.tsx +++ b/src/components/ProfileHoverCard/index.web.tsx @@ -370,7 +370,10 @@ function Inner({ profile: profileShadow, logContext: 'ProfileHoverCard', }) - const blockHide = profile.viewer?.blocking || profile.viewer?.blockedBy + const isProfileBlocked = + profile.viewer?.blocking || + profile.viewer?.blockedBy || + profile.viewer?.blockingByList const following = formatCount(profile.followsCount || 0) const followers = formatCount(profile.followersCount || 0) const pluralizedFollowers = plural(profile.followersCount || 0, { @@ -401,7 +404,7 @@ function Inner({ /> </Link> - {!isMe && ( + {!isMe && !isProfileBlocked && ( <Button size="small" color={profileShadow.viewer?.following ? 'secondary' : 'primary'} @@ -439,7 +442,7 @@ function Inner({ </View> </Link> - {!blockHide && ( + {!isProfileBlocked && ( <> <View style={[a.flex_row, a.flex_wrap, a.gap_md, a.pt_xs]}> <InlineLinkText |