Skip to content

Commit 26ba92b

Browse files
authored
Typo
1 parent 256d5d1 commit 26ba92b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cognito/decode-verify-jwt/decode-verify-jwt.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const verifyPromised = promisify(jsonwebtoken.verify.bind(jsonwebtoken));
7575
const handler = async (request: ClaimVerifyRequest): Promise<ClaimVerifyResult> => {
7676
let result: ClaimVerifyResult;
7777
try {
78-
console.log(`user claim verfiy invoked for ${JSON.stringify(request)}`);
78+
console.log(`user claim verify invoked for ${JSON.stringify(request)}`);
7979
const token = request.token;
8080
const tokenSections = (token || '').split('.');
8181
if (tokenSections.length < 2) {

0 commit comments

Comments
 (0)