chore: format auth code and update runtime

This commit is contained in:
2026-07-29 22:11:08 -04:00
parent 892479dceb
commit 22e6e721a7
9 changed files with 132 additions and 73 deletions
+3 -1
View File
@@ -37,7 +37,9 @@ document.querySelector("#save").addEventListener("click", async () => {
"content-type": "application/json",
"x-csrf-token": csrf(),
},
body: JSON.stringify({ enabled: document.querySelector("#signup").checked }),
body: JSON.stringify({
enabled: document.querySelector("#signup").checked,
}),
});
await load();
});