UXMode Redirect Issues (NO EVENTS FIRE)

Hello we are using the following web3Auth packages

"@web3auth/base": "^2.1.2",
"@web3auth/core": "^2.1.2",
"@web3auth/openlogin-adapter": "^2.1.2",

We have it so users are redirected on login using the following config + event listeners.

await web3Auth.connectTo(WALLET_ADAPTERS.OPENLOGIN, {
   loginProvider: 'jwt',
   extraLoginOptions: {
      id_token: token,
      verifierIdField: 'sub',
      domain: 'http://localhost:3000',
   },
});

Our current setup abruptly stopped working today for the uxMode: "redirect", NO EVENTS FIRE AT ALL. We can only get events to fire for the uxMode: "popup". Were there recent changes made to the uxMode: "redirect" that could suddenly start causing these issues?



Originally posted by: gerardopar

Check the discussion at: https://github.com/orgs/Web3Auth/discussions/1263