Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Sep 10, 2024
1 parent 8ba72fb commit 9a3fb13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/oauth/model.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class OAuthModel implements AuthorizationCodeModel {
async getAccessToken(accessToken: string): Promise<Token | Falsey> {
const result = await decodeAccessToken(accessToken);
if (result.status === "error") {
captureError("unexpected error in getAccessToken", result.error);
captureError("getAccessToken", result.error);
return false;
}
const decoded = result.data;
Expand Down

0 comments on commit 9a3fb13

Please sign in to comment.