From c1d44c4cea3003e03dd024306162615998ab1ea7 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 10 May 2026 13:35:02 +0200 Subject: [PATCH] Comment out forced caching in page data fetch to ensure fresh data retrieval --- web/lib/util/page-data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/lib/util/page-data.ts b/web/lib/util/page-data.ts index 32c2d390..51ecfa51 100644 --- a/web/lib/util/page-data.ts +++ b/web/lib/util/page-data.ts @@ -22,7 +22,7 @@ export const getPageData = async (route = '/') => { const url = `${DEPLOYED_WEB_URL}/api/proxy-data?path=${buildId}/${cleanRoute || 'index'}.json` debug('Fetching data from:', url) const res = await fetch(url, { - cache: 'force-cache', + // cache: 'force-cache', // must fetch fresh data if their profile changed or got deleted }) if (!res.ok) {