diff --git a/src/components/node/NodeNoComments/index.tsx b/src/components/node/NodeNoComments/index.tsx index 47f2bafd..f1395383 100644 --- a/src/components/node/NodeNoComments/index.tsx +++ b/src/components/node/NodeNoComments/index.tsx @@ -20,7 +20,7 @@ const NodeNoComments: FC = ({ is_loading = false, count = 3 }) => { return ( {items} - {is_loading &&
{t(ERRORS.NO_COMMENTS)}
} + {!is_loading &&
{t(ERRORS.NO_COMMENTS)}
}
); };