Skip to content

Commit

Permalink
Fix skill links
Browse files Browse the repository at this point in the history
  • Loading branch information
tshemsedinov committed Jan 28, 2024
1 parent 81ed98c commit a918161
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/src/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,10 @@ const getTotal = (answered) => {
const answered = skills[unit];
if (expected) {
const todo = match(expected, answered);
todos.push(`\n## [${unit}](Skills/${unit}.md)\n`);
todos.push(`\n## [${unit}](/Skills/${unit}.md)\n`);
todos.push(...todo);
}
totals.push(`- [${unit}](Skills/${unit}.md)`);
totals.push(`- [${unit}](/Skills/${unit}.md)`);
const total = getTotal(answered);
totals.push(...total);
}
Expand Down

0 comments on commit a918161

Please sign in to comment.