I’m facing the issue where when a user clicks on signup or login, the widget opens but if the widget is left open for more than 3-4mins and then user logs in or signs up the page goes blank.
When this happens on the signup page, our post user registration action does not get executed.
When the submission is delayed due to other work, the popup window could time out if the other work takes longer than 60 seconds, which is the popup window’s default timeout.
There is a timeout setting that can be configured. In the config options passed to the loginWithPopup() function, it is possible to pass an extended timeout for the popup window.
To make it work, I recommend inserting a value or an empty one in the options parameter. Then, you can add the timeoutInSeconds: 60value to the config parameter, where you can change it to your needs.