Hello,
I am encountering an issue when attempting to open the login Lightbox using authentication.promptLogin();
after a member logs out. Despite trying several approaches below, the login Lightbox does not open following the logout process. Could you please provide assistance or guidance on how to resolve this?
Thank you.
authentication.logout();
authentication.promptLogin();
await authentication.logout();
await authentication.promptLogin();
authentication.logout();
setTimeout(() => {
authentication.promptLogin();
}, 10000);