fix: remove restricted fields from public listing query, fix service worker offline fallback, style description as card and remove redundant heading

This commit is contained in:
2026-02-07 09:04:13 +01:00
parent 3c7d475d36
commit 3f51cb5e53
3 changed files with 9 additions and 5 deletions

View File

@@ -167,7 +167,7 @@ async function staleWhileRevalidate(request) {
cache.put(request, response.clone());
}
return response;
}).catch(() => cached);
}).catch(() => cached || new Response('Offline', { status: 503 }));
return cached || fetchPromise;
}