Skip to content

Commit

Permalink
fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
renkelvin committed Sep 29, 2023
1 parent 5fb657d commit 3e8b80d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/auth/src/core/strategies/email_and_password.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export async function sendPasswordResetEmail(
if (actionCodeSettings) {
_setActionCodeSettingsOnRequest(authInternal, request, actionCodeSettings);
}
void handleRecaptchaFlow(
await handleRecaptchaFlow(
authInternal,
request,
RecaptchaActionName.GET_OOB_CODE,
Expand Down
2 changes: 1 addition & 1 deletion packages/auth/src/core/strategies/email_link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export async function sendSignInLinkToEmail(
}
}
setActionCodeSettings(request, actionCodeSettings);
void handleRecaptchaFlow(
await handleRecaptchaFlow(
authInternal,
request,
RecaptchaActionName.GET_OOB_CODE,
Expand Down

0 comments on commit 3e8b80d

Please sign in to comment.