diff options
author | Wesley <46491851+wscld@users.noreply.github.com> | 2024-09-20 17:06:31 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-20 15:06:31 -0500 |
commit | e07f5d5980e7647e78bcaf10c7a239725b08ce3d (patch) | |
tree | 8f03cc58a1ad7f12277d5af0a2cea5e6c32fc465 /src/view/com/notifications | |
parent | 5be5f96faa5039e42ca85edd68b3f373f31a2ca0 (diff) | |
download | voidsky-e07f5d5980e7647e78bcaf10c7a239725b08ce3d.tar.zst |
Fixing extra spacing in notification text (#5396)
Diffstat (limited to 'src/view/com/notifications')
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index b248bb4c5..53152b50d 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -316,8 +316,7 @@ let FeedItem = ({ {authors.length > 1 ? ( <> <Text style={[pal.text, s.mr5, s.ml5]}> - {' '} - <Trans>and</Trans>{' '} + <Trans>and</Trans> </Text> <Text style={[pal.text, s.bold]}> {plural(authors.length - 1, { |