diff options
author | Eric Bailey <git@esb.lol> | 2024-06-04 14:51:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 20:51:38 +0100 |
commit | e64b7cf69869ad5d984037ced7f81fc400e1daa0 (patch) | |
tree | 321729ccd0e0cfe691269941d4e891ee789d4e9b /src/components/dms/dialogs/SearchablePeopleList.tsx | |
parent | a2d5343a87c05ac5640abba5c50712e2a10a7958 (diff) | |
download | voidsky-e64b7cf69869ad5d984037ced7f81fc400e1daa0.tar.zst |
Fix descenders cutoff in new chat dialog (#4359)
Diffstat (limited to 'src/components/dms/dialogs/SearchablePeopleList.tsx')
-rw-r--r-- | src/components/dms/dialogs/SearchablePeopleList.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/dms/dialogs/SearchablePeopleList.tsx b/src/components/dms/dialogs/SearchablePeopleList.tsx index cc3757928..d92ea6835 100644 --- a/src/components/dms/dialogs/SearchablePeopleList.tsx +++ b/src/components/dms/dialogs/SearchablePeopleList.tsx @@ -395,11 +395,13 @@ function ProfileCard({ /> <View style={[a.flex_1, a.gap_2xs]}> <Text - style={[t.atoms.text, a.font_bold, a.leading_snug]} + style={[t.atoms.text, a.font_bold, a.leading_tight]} numberOfLines={1}> {displayName} </Text> - <Text style={t.atoms.text_contrast_high} numberOfLines={2}> + <Text + style={[a.leading_tight, t.atoms.text_contrast_high]} + numberOfLines={2}> {!enabled ? <Trans>{handle} can't be messaged</Trans> : handle} </Text> </View> |