As of right now I've yet to implement any error handling. As such, there are errors.
Seriously though, errors, primarily revolving around missing, required props, will result in the /auth/* endpoints reloading infinitely; initializing a new flow each time.
Obviously this should be mitigated with an ErrorBoundary; this issue is that notice.
So far I've noticed this issue when leaving out props on the <AuthForm> component; or when the state it relies upon is removed/malformed. I've only ever ran into this issue when it was my direct-action causing it; I've never had a normal instance of infinite reloading.
As of right now I've yet to implement any error handling. As such, there are errors.
Seriously though, errors, primarily revolving around missing, required props, will result in the
/auth/*endpoints reloading infinitely; initializing a newfloweach time.Obviously this should be mitigated with an
ErrorBoundary; this issue is that notice.So far I've noticed this issue when leaving out
propson the<AuthForm>component; or when the state it relies upon is removed/malformed. I've only ever ran into this issue when it was my direct-action causing it; I've never had a normal instance of infinite reloading.