Derek Davenport
Derek Davenport
The AuthMethods enum is here: AE.Net.Mail.AuthMethods.Login
There is a `signIn_failure` event, but it is dispatched before my page component is called. I can see it if I put the Hub listener outside the component function.
I don't know about react native, but in react I'm doing this for now: let passed = false Hub.listen('auth', ({ payload }) => { if (payload.event == 'signIn_failure' && !passed)...
Had a very similar issue. Solved it by doing `amplify remove auth`, `amplify push`, `amplify import auth`, `amplify push`. If you don't do a push between remove and import, several...