diff options
Diffstat (limited to 'src/components/AccountList.tsx')
-rw-r--r-- | src/components/AccountList.tsx | 6 |
1 files changed, 5 insertions, 1 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]}> |