An ATproto social media client -- with an independent Appview.

Fixing hover card for labeler accounts (#5414)

* Fixing hover card for labeler account

* removing memo

authored by

Wesley and committed by
GitHub
5be5f96f 79a2f8d5

+3
+3
src/components/ProfileHoverCard/index.web.tsx
··· 411 411 () => currentAccount?.did === profile.did, 412 412 [currentAccount, profile], 413 413 ) 414 + const isLabeler = profile.associated?.labeler 414 415 415 416 return ( 416 417 <View> ··· 419 420 <UserAvatar 420 421 size={64} 421 422 avatar={profile.avatar} 423 + type={isLabeler ? 'labeler' : 'user'} 422 424 moderation={moderation.ui('avatar')} 423 425 /> 424 426 </Link> 425 427 426 428 {!isMe && 429 + !isLabeler && 427 430 (isBlockedUser ? ( 428 431 <Link 429 432 to={profileURL}