-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong route gets served #246
Comments
When I log SvelteKit's {
complete: Promise {status: "fulfilled", result: undefined},
from: {params: {}, route: {id: "/welcome/password"}, url: URL},
to: {params: {}, route: {id: "/welcome/password/confirm"}, url: URL},
type: "goto",
willUnload: false
} This is the correct object, i.e. SvelteKit does not navigate to This makes me believe that this is some esoteric Safari caching problem. The workaround is to disable caches in the Network tab in Safari's DevTools: |
For now, wait and see if we can reproduce this in the future. |
This is another instance of a wrong route getting served in dev. The app routes from the password confirmation screen back to the password confirmation screen. This is not because the passwords don't match. After the second password confirmation attempt, the Continue button freezes. ConsoleThere are no logs in the console that give a hint on what is going wrong.
|
I encounter the exact same problem as described in the main description on Ubuntu 22.04. |
The root cause is still unclear and still not reproducible. It might be related to how Tauri I will try wiring up Tauri |
Wire up Tauri listeners in May not fix this, but it's cleaner and easier to understand. |
New instance of a wrong route, this is on branch `chore/bump-did-manager. Screencast.from.08-08-24.16.06.04.webm |
Accidentally closed. Reopening. |
Description
When running UniMe in dev on macOS, occasionally, it looks like SvelteKit serves the wrong route. This can happen in different routes.
Hardware Specification
Happens in development on macOS.
Steps to Reproduce the Bug
This bug was observed by @daniel-mader and @maiertech. Both have not managed to find a reproduction.
Expected Behaviour
In the animated GIF I am on route
/welcome/password
and click on the continue button. I expect to be taken to route/welcome/password/confirm
.Actual Behaviour
When I am on route
/welcome/password
I click on the continue button and unexpectedly see route/welcome/pledge
:Errors
No errors in the logs.
The text was updated successfully, but these errors were encountered: