diff options
Diffstat (limited to 'src/components/CommentsList/CommentsList.tsx')
| -rw-r--r-- | src/components/CommentsList/CommentsList.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/CommentsList/CommentsList.tsx b/src/components/CommentsList/CommentsList.tsx index 6599475..3a1c57e 100644 --- a/src/components/CommentsList/CommentsList.tsx +++ b/src/components/CommentsList/CommentsList.tsx @@ -12,10 +12,11 @@ const CommentsList = ({ comments }: { comments: CommentData[] }) => { return ( <> + <h2 className={styles.title}>{t`Comments`}</h2> {comments.length > 0 ? ( <ol className={styles.list}>{getCommentsList()}</ol> ) : ( - <p>{t`No comments yet.`}</p> + <p className={styles['no-comments']}>{t`No comments yet.`}</p> )} </> ); |
