From f16395dfb3bb38cec6d0358308202591e0312582 Mon Sep 17 00:00:00 2001 From: kualta Date: Sun, 8 Oct 2023 12:55:07 +0300 Subject: [PATCH] update reactions list rendering --- src/components/Post.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/Post.tsx b/src/components/Post.tsx index 89d9a05..eba9bbf 100644 --- a/src/components/Post.tsx +++ b/src/components/Post.tsx @@ -262,11 +262,7 @@ export const PostContent = ({ post }: { post: Post }) => { return editing ? ( <> -
+
@@ -292,7 +288,7 @@ export const PostBadges = ({ post }: { post: Post }) => { - {post.reactions.length > 0 && ( + {post.reactions.length > 0 || post.replies.length > 0 || post.createdAt.toUTCString() !== post.updatedAt.toUTCString() && (