Skip to content

Commit

Permalink
Fix error build TS
Browse files Browse the repository at this point in the history
  • Loading branch information
hieu-w committed Jan 16, 2025
1 parent 0e1fcbb commit eb1b413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/PasswordlessHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default class PasswordlessHandler extends AbstractLoginHandler {
// using stringify and parse to remove undefined params
// This method is only resolved when the user clicks the email link
post(this.finalURL.href, JSON.parse(JSON.stringify(finalJwtParams)))
.then((response) => {
.then((response): Response => {
log.info("posted", response);
return undefined;
})
Expand Down

0 comments on commit eb1b413

Please sign in to comment.