Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
slobo authored Nov 6, 2020
1 parent 256d5d1 commit 26ba92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cognito/decode-verify-jwt/decode-verify-jwt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const verifyPromised = promisify(jsonwebtoken.verify.bind(jsonwebtoken));
const handler = async (request: ClaimVerifyRequest): Promise<ClaimVerifyResult> => {
let result: ClaimVerifyResult;
try {
console.log(`user claim verfiy invoked for ${JSON.stringify(request)}`);
console.log(`user claim verify invoked for ${JSON.stringify(request)}`);
const token = request.token;
const tokenSections = (token || '').split('.');
if (tokenSections.length < 2) {
Expand Down

0 comments on commit 26ba92b

Please sign in to comment.