Skip to content

Commit

Permalink
fixing bug in tasks comments details
Browse files Browse the repository at this point in the history
  • Loading branch information
dbenton9 committed Aug 16, 2023
1 parent 8f47b47 commit d8d42b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const TaskModalCommentsListItem: React.FC<Props> = ({
return (
<Box>
<CommentInfoText display="inline">
{comment?.person.firstName} {comment?.person.lastName}{' '}
{comment?.person?.firstName} {comment?.person?.lastName}{' '}
</CommentInfoText>
<Tooltip placement="bottom" title={comment?.createdAt || ''} arrow>
<CommentInfoText display="inline">
Expand Down

0 comments on commit d8d42b9

Please sign in to comment.