Просмотр исходного кода

Fix one space that was changed unintentionally

arvid-e 10 месяцев назад
Родитель
Сommit
273da6cf23
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      apps/app/src/client/components/PageComment/Comment.tsx

+ 1 - 0
apps/app/src/client/components/PageComment/Comment.tsx

@@ -80,6 +80,7 @@ export const Comment = (props: CommentProps): JSX.Element => {
 
   const getRootClassName = (comment: ICommentHasId) => {
     let className = 'page-comment flex-column';
+
     // TODO: fix so that `comment.createdAt` to be type Date https://redmine.weseek.co.jp/issues/113876
     const commentCreatedAtFixed = typeof comment.createdAt === 'string'
       ? parseISO(comment.createdAt)