Skip to content

Commit

Permalink
Merge pull request #124 from knowankit/fix/user-name-undefined-in-card-2
Browse files Browse the repository at this point in the history
Fix fullname undefined
  • Loading branch information
knowankit authored Jul 31, 2021
2 parents 52717ed + 4473cef commit 27de241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/board/columns/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Card: FC<Props> = ({ cardIndex, showCardDetail, card }) => {

return (
<Box display="flex" justifyContent="flex-end">
<Avatar size="xs" name={user[0].fullName} />
<Avatar size="xs" name={user[0]?.fullName} />
</Box>
);
};
Expand Down

1 comment on commit 27de241

@vercel
Copy link

@vercel vercel bot commented on 27de241 Jul 31, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.