Our sign in works fine. However, when we log user out, and user attempts to login again, their Auth0 widget won’t let them select login, it automatically logs in with last one they had. Any way to clear that out, so sign in button launches the widget and doesn’t auto login?
Could not find API’s in SDK for that.
Auth0
.webAuth()
.scope("openid profile email")
.audience("...")
.start {
switch $0 {
case .failure(let error):
//fail
case .success(let credentials):
//success
}
}