The account set-up page gets stuck on Saving... #27
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Once I click the button to enter my password. The button gets stuck on Saving...
It still works that my account is created and if I refresh, the I'm logged in. But it gets stuck at Saving... if I keep waiting.
Fixed in
fde8632(branchdevelopment).Root cause: the account-activation success branch set the session/auth but left the
?invite=token in the URL andbusy=true. App routing keys on that query param (url_token()), so it kept rendering the set-up page with the button frozen on Saving… — a manual refresh dropped the param and logged you in, which matched the report.Fix: on successful activation, clear the URL search (mirroring the existing
go_signinpattern) and resetbusy, so the now-logged-in user routes straight to the app.