diff options
author | Manurbhav Arya | 2024-06-24 16:10:10 +0530 |
---|---|---|
committer | Manurbhav Arya | 2024-06-24 16:10:10 +0530 |
commit | caa72207d70ad8e965ef0b167b98f8b580820132 (patch) | |
tree | 3fbfd67c85cc531db6744770dde2e8a4975e004f /src/components/SignupBody.astro | |
parent | 0451fd96a5aa22410560a8e6ab77242d3ee0654a (diff) | |
download | IotJS-Astro-main.tar.gz IotJS-Astro-main.tar.bz2 IotJS-Astro-main.zip |
Diffstat (limited to 'src/components/SignupBody.astro')
-rw-r--r-- | src/components/SignupBody.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SignupBody.astro b/src/components/SignupBody.astro index 70b12df..f98afb9 100644 --- a/src/components/SignupBody.astro +++ b/src/components/SignupBody.astro @@ -47,7 +47,7 @@ }); // Redirect to admin page if successful if (response.ok) { - window.location.href = "/admin"; + window.location.href = "/announce"; } else { errorMessageElement.innerText = (await response.json()).error; } |