diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/AccountList.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/AccountList.tsx b/src/components/AccountList.tsx index 883c06c14..68bb482af 100644 --- a/src/components/AccountList.tsx +++ b/src/components/AccountList.tsx @@ -126,10 +126,12 @@ function AccountItem({ <UserAvatar avatar={profile?.avatar} size={24} /> </View> <Text style={[a.align_baseline, a.flex_1, a.flex_row, a.py_sm]}> - <Text style={[a.font_bold]}> + <Text emoji style={[a.font_bold]}> {profile?.displayName || account.handle}{' '} </Text> - <Text style={[t.atoms.text_contrast_medium]}>{account.handle}</Text> + <Text emoji style={[t.atoms.text_contrast_medium]}> + {account.handle} + </Text> </Text> {isCurrentAccount ? ( <Check |