diff options
author | Eric Bailey <git@esb.lol> | 2024-09-25 15:48:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 15:48:40 -0500 |
commit | 6bc001a30e4376e706fd1c10469065e0e78e1bf0 (patch) | |
tree | 59f285bda59c7df158455a8853252cd4153969c9 | |
parent | fd15bfec40a2579036a9f842a38bc0f2d673a3be (diff) | |
download | voidsky-6bc001a30e4376e706fd1c10469065e0e78e1bf0.tar.zst |
Support emojis in settings account cards (#5487)
-rw-r--r-- | src/view/screens/Settings/index.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx index 737ca2d28..73bfaa83e 100644 --- a/src/view/screens/Settings/index.tsx +++ b/src/view/screens/Settings/index.tsx @@ -94,10 +94,14 @@ function SettingsAccountCard({ /> </View> <View style={[s.flex1]}> - <Text type="md-bold" style={[pal.text, a.self_start]} numberOfLines={1}> + <Text + emoji + type="md-bold" + style={[pal.text, a.self_start]} + numberOfLines={1}> {profile?.displayName || account.handle} </Text> - <Text type="sm" style={pal.textLight} numberOfLines={1}> + <Text emoji type="sm" style={pal.textLight} numberOfLines={1}> {account.handle} </Text> </View> |