diff --git a/apps/portal/src/components/resumes/comments/comment/CommentBody.tsx b/apps/portal/src/components/resumes/comments/comment/CommentBody.tsx index 69da7418..ee23fae2 100644 --- a/apps/portal/src/components/resumes/comments/comment/CommentBody.tsx +++ b/apps/portal/src/components/resumes/comments/comment/CommentBody.tsx @@ -30,9 +30,16 @@ export default function CommentBody({
{/* Name and creation time */}
-
- {comment.user.name ?? 'Reviewer ABC'} +
+
+ {comment.user.name ?? 'Reviewer ABC'} +
+ +
+ {isCommentOwner ? '(Me)' : ''} +
+
{comment.createdAt.toLocaleString('en-US', { dateStyle: 'medium',