From e2aa75031e639675915fe3fe450206e80cf2c820 Mon Sep 17 00:00:00 2001 From: Samandar Turgunboyev Date: Thu, 26 Feb 2026 14:13:34 +0500 Subject: [PATCH] fix --- src/app/[locale]/about/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/[locale]/about/page.tsx b/src/app/[locale]/about/page.tsx index 97b94f9..384eaf0 100644 --- a/src/app/[locale]/about/page.tsx +++ b/src/app/[locale]/about/page.tsx @@ -17,7 +17,8 @@ const fetchAboutData = async () => { { next: { revalidate: 10 } }, // 5 daqiqa ); if (!res.ok) throw new Error(`Failed to fetch about data: ${res.status}`); - return res.json(); + const data = await res.json(); + return data.banner; }; interface Props {