chore(server): request bootstrap with no cache

This commit is contained in:
Elian Doran 2026-03-15 19:39:27 +02:00
parent 53739ee8d4
commit 7a544482d1
No known key found for this signature in database

View File

@ -140,7 +140,7 @@ async function refreshCsrfToken(): Promise<void> {
csrfRefreshInProgress = (async () => {
try {
const response = await fetch(`./bootstrap${window.location.search}`);
const response = await fetch(`./bootstrap${window.location.search}`, { cache: "no-store" });
if (response.ok) {
const json = await response.json();
glob.csrfToken = json.csrfToken;