Skip to content

Commit

Permalink
fix: force email error for checking email
Browse files Browse the repository at this point in the history
  • Loading branch information
syl-p committed Jan 2, 2024
1 parent 233425a commit 06b09b8
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,9 @@ export class ForgetPasswordComponent implements OnInit {
this.loading = false;
this.validated.emit(true);
})
.catch(err => {
.catch(() => {
this.loading = false;
console.log(err.status);
this.msgFromBack = err.status;
this.msgFromBack = '404';
});
}
}

0 comments on commit 06b09b8

Please sign in to comment.