Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a34c0bd

Browse files
author
himaniraghav3
committedApr 25, 2025·
bot review fixes
1 parent 8043b02 commit a34c0bd

File tree

1 file changed

+1
-1
lines changed
  • src/apps/copilots/src/pages/copilot-opportunity-list

1 file changed

+1
-1
lines changed
 

‎src/apps/copilots/src/pages/copilot-opportunity-list/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const tableColumns: TableColumn<CopilotOpportunity>[] = [
4747
const remainingSkills = copilotOpportunity.skills.slice(3)
4848
return (
4949
<div className={styles.skillsContainer}>
50-
{visibleSkills.map(skill => (
50+
{visibleSkills.map((skill: { id: string | number; name: string }) => (
5151
<div key={skill.id} className={styles.skillPill}>
5252
{skill.name}
5353
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.