Using the library https://cdn.auth0.com/js/auth0-spa-js/2.0/auth0-spa-js.production.js, I display the “Username-Password-Authentication” login popup. If I leave the popup without any user interaction for 5 minutes, and then enter my login and password, I get a blank page without the token, is is the the value of url :https://myurl/authorize/resume?state=YUYrAItkpfyn8IpTYVXUchf0w_HWmMWr. Is it possible to configure this inactivity timeout for interactions with the Auth0 popup?
my code to open the popup
  const resLogin = await auth0ClientValue.loginWithPopup({
    authorizationParams: {
      redirect_uri: domain,
      response_type: "id_token",
      prompt: "login",
      connection: "Username-Password-Authentication",
    },
  });
Any help please?