diff --git a/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx b/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx index 1be17cf7..c20930cf 100644 --- a/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx +++ b/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx @@ -1,3 +1,4 @@ +import clsx from 'clsx'; import { useState } from 'react'; import { FaceSmileIcon } from '@heroicons/react/24/outline'; @@ -23,27 +24,45 @@ export default function ResumeCommentListItem({ const [isReplyingComment, setIsReplyingComment] = useState(false); return ( -
+
{comment.user.name ?? 'Reviewer ABC'}
-+
{isCommentOwner ? '(Me)' : ''}
@@ -72,26 +91,29 @@ export default function ResumeCommentListItem({