Skip to content

Commit

Permalink
Fixing converter by dropping ? from the array
Browse files Browse the repository at this point in the history
  • Loading branch information
housamz committed Aug 22, 2024
1 parent 522f8c4 commit d4474ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ class LinkedInToJsonResume {
});

// Sort the skills by level
this.target.skills?.sort((a, b) => {
this.target.skills.sort((a, b) => {
return b.level - a.level;
});
}
Expand Down

0 comments on commit d4474ea

Please sign in to comment.