minor css and js improvements

This commit is contained in:
2026-06-20 23:30:20 +02:00
parent 55cc1be52f
commit 433ed86f7e
7 changed files with 11 additions and 20 deletions

View File

@@ -3,7 +3,8 @@ document.addEventListener("DOMContentLoaded", async function () {
const response = await fetch("/api/v1/frontend/response/");
if (!response.ok) {
throw new Error(`HTTP ${response.status}`);
console.error(`HTTP ${response.status}`);
return;
}
const data = await response.json();