diff --git a/src/components/post/post.tsx b/src/components/post/post.tsx index 22fe5da4..3037f775 100644 --- a/src/components/post/post.tsx +++ b/src/components/post/post.tsx @@ -150,7 +150,7 @@ const PostDesktop = ({ post, roles, showAllReplies }: PostProps) => { )} {!(pinned && !isInPostPage) && replies && - replies.slice(0, showAllReplies ? replies.length : 5).map((reply, index) => ( + (showAllReplies ? replies : replies.slice(-5)).map((reply, index) => (