Skip to content

Commit 0f81a43

Browse files
committed
Fix missing await
1 parent 4984e5e commit 0f81a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/auth-core/src/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export class Auth {
146146
}
147147

148148
async sendPasswordResetEmail(email: string, resetUrl: string) {
149-
const { challenge, verifier } = pkce.createVerifierChallengePair();
149+
const { challenge, verifier } = await pkce.createVerifierChallengePair();
150150
return {
151151
verifier,
152152
...(await this._post<{ email_sent: string }>("send-reset-email", {

0 commit comments

Comments
 (0)