wixUsers.promptLogin() bugging?

Hi All,

I make a simple call to wixUsers.promptLogin and nothing is coming out. Is it bugging? Am I the only one?

my code:

export function txtLogin_click(event) {
//Add your code for this event here:
let options = {“mode”: “login”};

wixUsers.promptLogin(options)
.then(user => wixLocation.to(“/account/dashboard”))
. catch (err => console.log(err))
}

have you imported wixUser on top of your page to use the wixusers library?

yes I did, I just did not show it for sake of brevity.

I kept digging and found another forum post describing exactly my issue:

I left a message there too as I believe that @yisrael-wix is busy with the issue.

Thanks