Skip to content

Commit

Permalink
Merge branch 'main' into chore/dependabot-ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
acoburn authored Aug 12, 2024
2 parents a731b72 + 8f73b07 commit 0a07b17
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 77 deletions.
148 changes: 74 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/common/verify/isValidAccessGrant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function isValidAccessGrant(
}),
});

// TODO: Add verifcation on the structure of the response
// TODO: Add verification on the structure of the response
return response.json();
}

Expand Down
2 changes: 1 addition & 1 deletion src/fetch/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ describe("boundFetch", () => {
});
});

it("merges initalization options in the fetch fn", async () => {
it("merges initialization options in the fetch fn", async () => {
const accessToken = "access-token";
const fetchFn = boundFetch(accessToken);

Expand Down
2 changes: 1 addition & 1 deletion src/fetch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export async function exchangeTicketForAccessToken(
const data = await response.json();
return data.access_token || null;
} catch (_e) {
// An error being thown here means that the response body doesn't parse as JSON.
// An error being thrown here means that the response body doesn't parse as JSON.
return null;
}
}
Expand Down

0 comments on commit 0a07b17

Please sign in to comment.