diff --git a/src/components/dataDisplay/postEmbed/ExternalEmbed.tsx b/src/components/dataDisplay/postEmbed/ExternalEmbed.tsx index 30b6ff6c..7b3c35a1 100644 --- a/src/components/dataDisplay/postEmbed/ExternalEmbed.tsx +++ b/src/components/dataDisplay/postEmbed/ExternalEmbed.tsx @@ -13,7 +13,7 @@ export default function ExternalEmbed(props: Props) { return ( <> {depth < 2 && ( -
+
)} diff --git a/src/containers/thread/ThreadActionsContainer.tsx b/src/containers/thread/ThreadActionsContainer.tsx index 12c945df..8bb11506 100644 --- a/src/containers/thread/ThreadActionsContainer.tsx +++ b/src/containers/thread/ThreadActionsContainer.tsx @@ -10,6 +10,7 @@ interface Props { export default function ThreadActionsContainer(props: Props) { const { avatar, post, rounded } = props; + const postHasReplies = !!post.replyCount; return (
-
- -
+ {postHasReplies && ( +
+ +
+ )}
); }