Skip to content

Commit

Permalink
Merge pull request #568 from rahuldkjain/hotfix/skills
Browse files Browse the repository at this point in the history
fix: #565
  • Loading branch information
rahuldkjain committed Jun 28, 2022
2 parents c83a129 + f4b2f5c commit 888aff3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/constants/skills.js
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,8 @@ const skillWebsites = {
const initialSkillState = {};

const skillsArray = Object.keys(categorizedSkills).map((key) => categorizedSkills[key].skills);
const skills = [...skillsArray].sort();
// eslint-disable-next-line prefer-spread
const skills = [].concat.apply([], skillsArray).sort();

skills.forEach((skill) => {
initialSkillState[skill] = false;
Expand Down

1 comment on commit 888aff3

@vercel
Copy link

@vercel vercel bot commented on 888aff3 Jun 28, 2022

Choose a reason for hiding this comment

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

Please sign in to comment.