Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix descenders cutoff in new chat dialog (#4359)

authored by

Eric Bailey and committed by
GitHub
e64b7cf6 a2d5343a

+4 -2
+4 -2
src/components/dms/dialogs/SearchablePeopleList.tsx
··· 395 395 /> 396 396 <View style={[a.flex_1, a.gap_2xs]}> 397 397 <Text 398 - style={[t.atoms.text, a.font_bold, a.leading_snug]} 398 + style={[t.atoms.text, a.font_bold, a.leading_tight]} 399 399 numberOfLines={1}> 400 400 {displayName} 401 401 </Text> 402 - <Text style={t.atoms.text_contrast_high} numberOfLines={2}> 402 + <Text 403 + style={[a.leading_tight, t.atoms.text_contrast_high]} 404 + numberOfLines={2}> 403 405 {!enabled ? <Trans>{handle} can't be messaged</Trans> : handle} 404 406 </Text> 405 407 </View>