diff options
Diffstat (limited to 'src/components/dms')
-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> |