Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Jan 2, 2024
1 parent 2d5ceef commit f618c19
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions frontend/src/scenes/comments/Comment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,7 @@ const Comment = ({ comment }: { comment: CommentType }): JSX.Element => {
data-comment-id={comment.id}
>
<div className="flex-1 flex justify-start p-2 gap-2">
<ProfilePicture
className="mt-1"
size="xl"
name={comment.created_by?.first_name}
email={comment.created_by?.email}
/>
<ProfilePicture className="mt-1" size="xl" user={comment.created_by} />

<div className="flex flex-col flex-1">
<div className="flex items-center gap-2">
Expand Down

0 comments on commit f618c19

Please sign in to comment.