about summary refs log tree commit diff
path: root/src/components/AccountList.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-09-26 09:59:32 -0500
committerGitHub <noreply@github.com>2024-09-26 23:59:32 +0900
commit179a913f20b9b77edbf9d167ebf32ad455f78eac (patch)
tree792c93f8432ac0036d2e35ce542379992159a0e6 /src/components/AccountList.tsx
parent625d7460d8af868ef0ea755cb3ac931dac4aad77 (diff)
downloadvoidsky-179a913f20b9b77edbf9d167ebf32ad455f78eac.tar.zst
Emoji in account list (#5497)
Diffstat (limited to 'src/components/AccountList.tsx')
-rw-r--r--src/components/AccountList.tsx6
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