From 073ad9a8f0a38fcdf492ebc27d6e22b7cb84d900 Mon Sep 17 00:00:00 2001 From: Mechanica Date: Thu, 13 Aug 2026 10:18:36 +0500 Subject: [PATCH] Update useCatalog.ts --- src/useCatalog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/useCatalog.ts b/src/useCatalog.ts index 49fa9aa..08e6106 100644 --- a/src/useCatalog.ts +++ b/src/useCatalog.ts @@ -8,7 +8,7 @@ export function useCatalog() { useEffect(() => { const controller = new AbortController(); - fetch(DATA_URL, { signal: controller.signal, cache: "no-cache" }) + fetch(DATA_URL, { signal: controller.signal, cache: "no-store" }) .then((response) => { if (!response.ok) throw new Error(`HTTP ${response.status}`); return response.json() as Promise;