diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-20 08:36:15 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-20 08:36:15 -0600 |
commit | db4109a5ea823622a48fcc3669762542708de633 (patch) | |
tree | 12d510ff3994812a40432ad2823be3101ad2a203 | |
parent | c2e7dd8f48d6afb1b6fc37f1935a5714dad2eee5 (diff) | |
download | voidsky-db4109a5ea823622a48fcc3669762542708de633.tar.zst |
Spacing fix of expanded notifications
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index feb9a3769..837f233d4 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -302,7 +302,7 @@ function ExpandedAuthorsList({ }).start() }, [heightInterp, visible]) return ( - <Animated.View style={(s.mb5, heightStyle)}> + <Animated.View style={[s.mb10, heightStyle]}> {authors.map(author => ( <Link key={author.href} |