Skip to content

Commit f2b5347

Browse files
authored
Apply suggestion from @lashinijay
1 parent aff4450 commit f2b5347

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/javascript/src/__legacy__/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export class AsgardeoAuthClient<T> {
242242

243243
if (configData.enablePKCE) {
244244
codeVerifier = this.cryptoHelper?.getCodeVerifier();
245-
codeChallenge = await this.cryptoHelper?.getCodeChallenge(codeVerifier);
245+
codeChallenge = this.cryptoHelper?.getCodeChallenge(codeVerifier);
246246
await this.storageManager.setTemporaryDataParameter(pkceKey, codeVerifier, userId);
247247
}
248248

0 commit comments

Comments
 (0)