From f68bdcd89ed87cba2f5e6099f17326687afb72a6 Mon Sep 17 00:00:00 2001 From: Samandar Turgunboyev Date: Thu, 26 Feb 2026 14:32:07 +0500 Subject: [PATCH] fixed --- src/app/[locale]/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/[locale]/about/page.tsx b/src/app/[locale]/about/page.tsx index 384eaf0..b8d568a 100644 --- a/src/app/[locale]/about/page.tsx +++ b/src/app/[locale]/about/page.tsx @@ -14,7 +14,7 @@ function getImageUrl(image?: string | null): string { const fetchAboutData = async () => { const res = await fetch( 'https://api.gastro.felixits.uz/api/v1/shared/aboutus/', - { next: { revalidate: 10 } }, // 5 daqiqa + { cache: 'no-store' }, ); if (!res.ok) throw new Error(`Failed to fetch about data: ${res.status}`); const data = await res.json();