We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8043b02 commit a34c0bdCopy full SHA for a34c0bd
src/apps/copilots/src/pages/copilot-opportunity-list/index.tsx
@@ -47,7 +47,7 @@ const tableColumns: TableColumn<CopilotOpportunity>[] = [
47
const remainingSkills = copilotOpportunity.skills.slice(3)
48
return (
49
<div className={styles.skillsContainer}>
50
- {visibleSkills.map(skill => (
+ {visibleSkills.map((skill: { id: string | number; name: string }) => (
51
<div key={skill.id} className={styles.skillPill}>
52
{skill.name}
53
</div>
0 commit comments