Skip to content

Commit

Permalink
fix: remove log for test
Browse files Browse the repository at this point in the history
  • Loading branch information
dacongda committed May 7, 2024
1 parent fea245a commit d0ed86d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ class Sdk {
try {
const parsedHeader: JwtHeader = jwtDecode<JwtHeader>(accessToken, { header: true });
const parsedPayload: JwtPayload = jwtDecode<JwtPayload>(accessToken);
console.log(parsedPayload)
return { header: parsedHeader, payload: parsedPayload };
} catch (error: any) {
throw new Error(error.message);
Expand Down

0 comments on commit d0ed86d

Please sign in to comment.