Skip to content

Commit

Permalink
#380 Fix ESLint error with ===
Browse files Browse the repository at this point in the history
  • Loading branch information
achichikalova committed Jul 1, 2022
1 parent a1f69c2 commit caf0960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/CompetenciesQuestionnairePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const CompetencyModel = () => {
}

const currentCompetency = Object.values(competencies)?.find(
competency => competency.id == categoryId
competency => competency.id === parseInt(categoryId as string)
);

console.log(currentCompetency);
Expand Down

0 comments on commit caf0960

Please sign in to comment.