Password reset no longer working

I’m trying to reset a user’s password using universal login, and the functionality seems to have broken in the last day.

This was reproduced on three different accounts.

Using auth0.js 9.3.1 with roughly following code:

  const args = {
    clientID: <clientId>,
    domain: <auth0Config.domain>,
    redirectUri: window.location.toString(),
    responseType: 'token id_token',
    scope: 'openid name email roles',
  };
 const auth = new auth0.WebAuth(args);
 auth.authorize();

Did this break for anyone else in the past day?

Can you let us know any error messages you are seeing in the logs?