chore(format): initial formatting

This commit is contained in:
HendrikRauh 2026-03-05 23:05:35 +01:00
parent fa08fcfe65
commit 008c79852b
21 changed files with 1021 additions and 1082 deletions

View file

@ -2,15 +2,15 @@ import { updateConfig } from "/submit.js";
const form = document.querySelector("form.config");
form.addEventListener("reset", async (event) => {
event.preventDefault();
form.addEventListener("reset", async event => {
event.preventDefault();
const ok = confirm(
"Sicher, dass du alle Einstellungen zurücksetzen möchtest?"
);
if (ok) {
updateConfig({
method: "DELETE",
});
}
const ok = confirm(
"Sicher, dass du alle Einstellungen zurücksetzen möchtest?"
);
if (ok) {
updateConfig({
method: "DELETE",
});
}
});