We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff4450 commit f2b5347Copy full SHA for f2b5347
1 file changed
packages/javascript/src/__legacy__/client.ts
@@ -242,7 +242,7 @@ export class AsgardeoAuthClient<T> {
242
243
if (configData.enablePKCE) {
244
codeVerifier = this.cryptoHelper?.getCodeVerifier();
245
- codeChallenge = await this.cryptoHelper?.getCodeChallenge(codeVerifier);
+ codeChallenge = this.cryptoHelper?.getCodeChallenge(codeVerifier);
246
await this.storageManager.setTemporaryDataParameter(pkceKey, codeVerifier, userId);
247
}
248
0 commit comments