cache fix

This commit is contained in:
makearmy 2025-09-27 08:41:17 -04:00
parent fcb0123ba3
commit 9621dad341

View file

@ -64,7 +64,6 @@ async function apiJson<T>(url: string, init?: RequestInit): Promise<T> {
headers: { "Content-Type": "application/json", ...(init?.headers || {}) },
cache: "no-store",
credentials: "include",
cache: "no-store",
});
if (!res.ok) {
const txt = await res.text();