diff --git a/src/interface/pages/Store.tsx b/src/interface/pages/Store.tsx index b6e59d13..e337e55a 100644 --- a/src/interface/pages/Store.tsx +++ b/src/interface/pages/Store.tsx @@ -30,7 +30,7 @@ const Store = () => { const [coverThemes, setCoverThemes] = useState([]); useEffect(() => { - fetch('https://raw.githubusercontent.com/BetterSEQTA/BetterSEQTA-Themes/main/store/themes.json', { cache: 'no-store' }) + fetch(`https://raw.githubusercontent.com/BetterSEQTA/BetterSEQTA-Themes/main/store/themes.json?nocache=${(new Date()).getTime()}`, { cache: 'no-store' }) .then(response => response.json()) .then((data: ThemesResponse) => { setGridThemes(data.themes);