From 08fb8e8ef4f8f04661bf209648e6a2e1361ad942 Mon Sep 17 00:00:00 2001 From: Jonas Hungershausen Date: Wed, 13 Nov 2024 10:47:54 +0100 Subject: [PATCH] chore: use settings UI URL in continue_with handler (#385) --- contrib/fetch/src/continueWith.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/fetch/src/continueWith.ts b/contrib/fetch/src/continueWith.ts index a4f05234d38..d011c9c1004 100644 --- a/contrib/fetch/src/continueWith.ts +++ b/contrib/fetch/src/continueWith.ts @@ -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)); }