Skip to content

Commit

Permalink
fix: MentorInfo component to render filledContacts correctly (#2504)
Browse files Browse the repository at this point in the history
  • Loading branch information
valerydluski authored Jul 9, 2024
1 parent c3acac8 commit 0d0b8f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function MentorInfo({ mentor }: Props) {
</span>
</Col>
</Row>
{filledContacts?.length &&
{filledContacts?.length > 0 &&
filledContacts.map(({ name, value }, idx) => (
<Row key={idx} justify="center" gutter={8} style={{ marginBottom: 8 }}>
<Col>
Expand Down

0 comments on commit 0d0b8f9

Please sign in to comment.