diff --git a/src/components/post-desktop/post-desktop.tsx b/src/components/post-desktop/post-desktop.tsx index 223440fc..47497c29 100644 --- a/src/components/post-desktop/post-desktop.tsx +++ b/src/components/post-desktop/post-desktop.tsx @@ -407,7 +407,7 @@ const PostDesktop = ({ openReplyModal, post, roles, showAllReplies, showReplies )} {!isInPendingPostView && - !isDescription && + (!isDescription || (isDescription && !subplebbit?.updatedAt)) && !isRules && stateString && stateString !== 'Failed' && diff --git a/src/components/post-mobile/post-mobile.tsx b/src/components/post-mobile/post-mobile.tsx index 717d0f40..5a891e00 100644 --- a/src/components/post-mobile/post-mobile.tsx +++ b/src/components/post-mobile/post-mobile.tsx @@ -333,7 +333,7 @@ const PostMobile = ({ openReplyModal, post, roles, showAllReplies, showReplies = )} {!isInPendingPostView && - !isDescription && + (!isDescription || (isDescription && !subplebbit?.updatedAt)) && !isRules && stateString && stateString !== 'Failed' &&