Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/frontend/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
// Don't redirect if we're visiting webauthn iframe used for migration
window.location.pathname !== "/iframe/webauthn" &&
// Don't redirect if we're visiting callback used for OpenID flows
window.location.pathname !== "/callback"
window.location.pathname !== "/callback" &&
// Don't redirect if we're visiting new authorize flow
// TODO: Implement redirect with pending ICRC-29 state
window.location.pathname !== "/authorize"
) {
window.location.replace(
primaryOrigin +
Expand Down
Loading