Skip to content

Commit 3e8b80d

Browse files
author
renkelvin
committed
fix return type
1 parent 5fb657d commit 3e8b80d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/auth/src/core/strategies/email_and_password.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export async function sendPasswordResetEmail(
106106
if (actionCodeSettings) {
107107
_setActionCodeSettingsOnRequest(authInternal, request, actionCodeSettings);
108108
}
109-
void handleRecaptchaFlow(
109+
await handleRecaptchaFlow(
110110
authInternal,
111111
request,
112112
RecaptchaActionName.GET_OOB_CODE,

packages/auth/src/core/strategies/email_link.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export async function sendSignInLinkToEmail(
102102
}
103103
}
104104
setActionCodeSettings(request, actionCodeSettings);
105-
void handleRecaptchaFlow(
105+
await handleRecaptchaFlow(
106106
authInternal,
107107
request,
108108
RecaptchaActionName.GET_OOB_CODE,

0 commit comments

Comments
 (0)