Skip to content

Commit eb1b413

Browse files
committed
Fix error build TS
1 parent 0e1fcbb commit eb1b413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers/PasswordlessHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export default class PasswordlessHandler extends AbstractLoginHandler {
121121
// using stringify and parse to remove undefined params
122122
// This method is only resolved when the user clicks the email link
123123
post(this.finalURL.href, JSON.parse(JSON.stringify(finalJwtParams)))
124-
.then((response) => {
124+
.then((response): Response => {
125125
log.info("posted", response);
126126
return undefined;
127127
})

0 commit comments

Comments
 (0)