diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 11:34:07 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 11:34:07 -0600 |
commit | 74ab6530d427556c38eb04fe135467f4fa91404c (patch) | |
tree | 0f07bb992e035dfae6477689f47f670a3c182055 /src/view/com/post-thread/PostThreadItem.tsx | |
parent | 1ed82b6c590010aa25bcf453d15fdcb1ae673b36 (diff) | |
download | voidsky-74ab6530d427556c38eb04fe135467f4fa91404c.tar.zst |
Add the ability to expand/collapse users in notifications
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 8df6260c2..2c7ab716c 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -103,10 +103,7 @@ export const PostThreadItem = observer(function PostThreadItem({ if (deleted) { return ( <View style={[styles.outer, pal.border, pal.view, s.p20, s.flexRow]}> - <FontAwesomeIcon - icon={['far', 'trash-can']} - style={{color: pal.colors.icon}} - /> + <FontAwesomeIcon icon={['far', 'trash-can']} style={pal.icon} /> <Text style={[pal.textLight, s.ml10]}>This post has been deleted.</Text> </View> ) |