Forgot Password with react-moralis

I am trying to implement forgot password in React with the useMoralis hook like this

const { Moralis } = useMoralis();

await Moralis.User.requestPasswordReset(email, {
  success: () => {
    /// success callback
  },
  error: () => {
    /// error callback
  },
});

but seems like it doesn’t call either the success or error callback? also I didn’t get any password reset email, or is there any other API to use? Thanks

Did you set sendgrid info for you Moralis Server email configuration?

Yes I did, but I think the problem is not only the email because I have it tried on the verification email, seems like the function is not working properly because if it does at the very least it will call the success or error callback