diff --git a/src/components/Notice/CommentCard/index.tsx b/src/components/Notice/CommentCard/index.tsx index c13e072a73..b3ef13e465 100644 --- a/src/components/Notice/CommentCard/index.tsx +++ b/src/components/Notice/CommentCard/index.tsx @@ -88,17 +88,20 @@ const CommentCard = ({ } if (comment.author?.status?.state === 'archived' && (moment || article)) { + const content = moment + ? intl.formatMessage({ + defaultMessage: 'Comment deleted', + description: 'src/components/Notice/NoticeComment.tsx/moment', + id: 'Ci7dxf', + }) + : intl.formatMessage({ + defaultMessage: 'Comment deleted', + description: 'src/components/Notice/NoticeComment.tsx/article', + id: '7zn5ig', + }) return (
- +
) }