Skip to content

Commit

Permalink
removed stray console log
Browse files Browse the repository at this point in the history
  • Loading branch information
cs-raj committed Feb 19, 2024
1 parent 68efea2 commit 8d0fcd7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/contentstack-utilities/src/auth-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ class AuthHandler {
async openOAuthURL(): Promise<object> {
return new Promise(async (resolve, reject) => {
try {
console.log(this.codeVerifier)
const digest = crypto.createHash('sha256').update(this.codeVerifier).digest();
const codeChallenge = digest.toString('base64').replace(/\+/g, '-').replace(/\//g, '_').replace(/=/g, '');
await this.setOAuthBaseURL();
Expand Down

0 comments on commit 8d0fcd7

Please sign in to comment.