diff options
author | Eric Bailey <git@esb.lol> | 2024-09-26 09:59:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 23:59:32 +0900 |
commit | 179a913f20b9b77edbf9d167ebf32ad455f78eac (patch) | |
tree | 792c93f8432ac0036d2e35ce542379992159a0e6 /src/components/AccountList.tsx | |
parent | 625d7460d8af868ef0ea755cb3ac931dac4aad77 (diff) | |
download | voidsky-179a913f20b9b77edbf9d167ebf32ad455f78eac.tar.zst |
Emoji in account list (#5497)
Diffstat (limited to 'src/components/AccountList.tsx')
-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 |