style(post): remove 'loading comments', the backend state string is enough already

This commit is contained in:
Tom (plebeius.eth)
2024-08-14 14:43:07 +02:00
parent f6548cc2b8
commit 2c192b273f
2 changed files with 0 additions and 10 deletions
@@ -447,11 +447,6 @@ const PostDesktop = ({ openReplyModal, post, roles, showAllReplies, showReplies
)}
</span>
)}
{post?.replyCount === undefined && !isPostInAccountComments && !isInPendingPostView && (
<span className={styles.loadingString}>
<LoadingEllipsis string={t('loading_comments')} />
</span>
)}
{!isHidden &&
!(pinned && !isInPostPageView && !showOmittedReplies[cid]) &&
!isInPendingPostView &&
@@ -361,11 +361,6 @@ const PostMobile = ({ openReplyModal, post, roles, showAllReplies, showReplies =
</div>
)}
</div>
{post?.replyCount === undefined && !isInPendingPostView && (
<span className={styles.loadingString}>
<LoadingEllipsis string={t('loading_comments')} />
</span>
)}
{!(pinned && !isInPostView) &&
!isInPendingPostView &&
!isDescription &&