diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/AccountList.tsx | 6 | ||||
-rw-r--r-- | src/components/AvatarStack.tsx | 1 | ||||
-rw-r--r-- | src/components/KnownFollowers.tsx | 1 | ||||
-rw-r--r-- | src/components/Pills.tsx | 2 |
4 files changed, 8 insertions, 2 deletions
diff --git a/src/components/AccountList.tsx b/src/components/AccountList.tsx index fe0daed50..0555dd411 100644 --- a/src/components/AccountList.tsx +++ b/src/components/AccountList.tsx @@ -131,7 +131,11 @@ function AccountItem({ (hovered || pressed || isPendingAccount) && t.atoms.bg_contrast_25, ]}> <View style={a.p_md}> - <UserAvatar avatar={profile?.avatar} size={24} /> + <UserAvatar + avatar={profile?.avatar} + size={24} + type={profile?.associated?.labeler ? 'labeler' : 'user'} + /> </View> <Text style={[a.align_baseline, a.flex_1, a.flex_row, a.py_sm]}> <Text emoji style={[a.font_bold]}> diff --git a/src/components/AvatarStack.tsx b/src/components/AvatarStack.tsx index aea472512..1b27a95ac 100644 --- a/src/components/AvatarStack.tsx +++ b/src/components/AvatarStack.tsx @@ -65,6 +65,7 @@ export function AvatarStack({ <UserAvatar size={size - 2} avatar={item.profile.avatar} + type={item.profile.associated?.labeler ? 'labeler' : 'user'} moderation={item.moderation.ui('avatar')} /> )} diff --git a/src/components/KnownFollowers.tsx b/src/components/KnownFollowers.tsx index 35a346c3a..b5c501039 100644 --- a/src/components/KnownFollowers.tsx +++ b/src/components/KnownFollowers.tsx @@ -163,6 +163,7 @@ function KnownFollowersInner({ size={SIZE} avatar={prof.avatar} moderation={moderation.ui('avatar')} + type={prof.associated?.labeler ? 'labeler' : 'user'} /> </View> ))} diff --git a/src/components/Pills.tsx b/src/components/Pills.tsx index 974d83593..3eddf1b9a 100644 --- a/src/components/Pills.tsx +++ b/src/components/Pills.tsx @@ -126,7 +126,7 @@ export function Label({ fill={t.atoms.text_contrast_medium.color} /> ) : ( - <UserAvatar avatar={desc.sourceAvi} size={avi} /> + <UserAvatar avatar={desc.sourceAvi} type="user" size={avi} /> )} <Text |