diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-05-08 23:17:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-08 23:17:44 +0300 |
commit | 36697755c72805d141044513d1a08bd45f946a3b (patch) | |
tree | e401637fa536685f20ecc585429df65b3b3cbb0b | |
parent | 1c2a7b0b5a085fa1c2911e31824a178b23232b53 (diff) | |
download | voidsky-36697755c72805d141044513d1a08bd45f946a3b.tar.zst |
fix reply display name being clipped (#8315)
-rw-r--r-- | src/view/com/composer/ComposerReplyTo.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/composer/ComposerReplyTo.tsx b/src/view/com/composer/ComposerReplyTo.tsx index bafac18f5..0ced14359 100644 --- a/src/view/com/composer/ComposerReplyTo.tsx +++ b/src/view/com/composer/ComposerReplyTo.tsx @@ -94,7 +94,7 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) { <View style={[a.flex_1, a.pl_md, a.pr_sm, a.gap_2xs]}> <View style={[a.flex_row, a.align_center, a.pr_xs]}> <Text - style={[a.font_bold, a.text_md, a.flex_shrink]} + style={[a.font_bold, a.text_md, a.leading_snug, a.flex_shrink]} numberOfLines={1} emoji> {sanitizeDisplayName( |