From 55163536b8dc20b3acca3924415c8b42d584f92d Mon Sep 17 00:00:00 2001 From: Samandar Turgunboyev Date: Mon, 15 Dec 2025 18:43:01 +0500 Subject: [PATCH] first commit --- src/app/[locale]/profile/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/[locale]/profile/page.tsx b/src/app/[locale]/profile/page.tsx index a35f7ae..78e736e 100644 --- a/src/app/[locale]/profile/page.tsx +++ b/src/app/[locale]/profile/page.tsx @@ -1,10 +1,11 @@ import Profile from '@/features/profile/ui/Profile'; +import { Suspense } from 'react'; const page = () => { return ( -
+ -
+ ); };