diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-20 08:35:35 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-20 08:35:35 -0600 |
commit | c2e7dd8f48d6afb1b6fc37f1935a5714dad2eee5 (patch) | |
tree | b2ef871f4b481559f2cc0b5d44e17a016deb449f | |
parent | 620d5bb102a0320a0595a2789054e1f2431e2fc1 (diff) | |
download | voidsky-c2e7dd8f48d6afb1b6fc37f1935a5714dad2eee5.tar.zst |
Fix font color of expanded notifs
-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 474fb8c65..feb9a3769 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -318,7 +318,7 @@ function ExpandedAuthorsList({ /> </View> <View style={s.flex1}> - <Text type="lg-bold" numberOfLines={1}> + <Text type="lg-bold" numberOfLines={1} style={pal.text}> {author.displayName || author.handle} <Text style={[pal.textLight]}>{author.handle}</Text> |