Skip to content

PM-1489 Re-add missing css for Opportunity details page#1162

Merged
kkartunov merged 1 commit intodevfrom
PM-1489
Jul 30, 2025
Merged

PM-1489 Re-add missing css for Opportunity details page#1162
kkartunov merged 1 commit intodevfrom
PM-1489

Conversation

@himaniraghav3
Copy link
Collaborator

Related JIRA Ticket:

https://topcoder.atlassian.net/browse/PM-1489

What's in this PR?

The skills css was missing

<div className={styles.skillsContainer}>
{props.opportunity?.skills.map(item => item.name)
.join(',')}
{props.opportunity?.skills.map(item => (<span className={styles.skillPill}>{item.name}</span>))}

Choose a reason for hiding this comment

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

Consider adding a key prop to each element in the array to ensure each element has a unique identifier. This is important for React to efficiently update and render lists. For example: {props.opportunity?.skills.map((item, index) => (<span key={index} className={styles.skillPill}>{item.name}</span>))}.

@kkartunov kkartunov merged commit 8ac36ce into dev Jul 30, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants