Skip to content

Commit

Permalink
chore: use settings UI URL in continue_with handler (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-jonas authored Nov 13, 2024
1 parent 7d4056f commit 08fb8e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/fetch/src/continueWith.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function handleContinueWith(
return redirectFlow(action.flow.id, "recovery", action.flow.url);
} else if (isShowSettingsUi(action)) {
// TODO: re-add url
return redirectFlow(action.flow.id, "settings");
return redirectFlow(action.flow.id, "settings", action.flow.url);
} else {
throw new Error("Unknown action: " + JSON.stringify(action));
}
Expand Down

0 comments on commit 08fb8e8

Please sign in to comment.