Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Aug 7, 2024
1 parent 676d58f commit 809fc1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/validate-docs-links/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function validateInternalLink(errors: Errors, href: string): void {
console.log(link);
// check if doc page exists, key is the url path without `/docs/`
// e.g. `api/example`
foundPage = documentMap.get(link);
const foundPage = documentMap.get(link);

if (!foundPage) {
errors.link.push(href);
Expand Down

0 comments on commit 809fc1e

Please sign in to comment.