diff --git a/frontend/src/components/CommentBox.tsx b/frontend/src/components/CommentBox.tsx
index 2b0c61a7..c80c70bb 100644
--- a/frontend/src/components/CommentBox.tsx
+++ b/frontend/src/components/CommentBox.tsx
@@ -57,12 +57,15 @@ const CommentBox = ({ comment }: CommentBoxProps) => {
{formatDate(comment.comment_timestamp * 1000)}
-
|
-
-
-
{' '}
- {formatNumbers(comment.comment_likecount, { notation: 'compact' })}
-
+ {comment.comment_likecount > 0 && (
+ <>
+
|
+
+
{' '}
+ {formatNumbers(comment.comment_likecount, { notation: 'compact' })}
+
+ >
+ )}
{comment.comment_is_favorited && (
<>