diff options
-rw-r--r-- | templates/javascript/src/onboarding.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/javascript/src/onboarding.ts b/templates/javascript/src/onboarding.ts index 0b455eb..14c1185 100644 --- a/templates/javascript/src/onboarding.ts +++ b/templates/javascript/src/onboarding.ts @@ -113,8 +113,8 @@ form.onsubmit = async (event: SubmitEvent) => { body: JSON.stringify(json), headers: { "Content-Type": "application/json" } }).then(response => { - if (response.status == 201) { - window.location.href = window.location.href; + if (response.status < 400) { + window.location.href = response.headers.get("Location") ?? "/"; } }) } |