From 589922bf647e288384a6f8aaedbd4f6912ae0101 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 01:34:17 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 71 ++++++++++++------------------------------- 1 file changed, 19 insertions(+), 52 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 36b1b37..580f1b3 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -30,47 +30,6 @@ function ShopPageContent() { filters, } = useProductCatalog({ basePath: "/shop" }); - if (isLoading) { - return ( - - - -
-
-

Loading products...

-
-
- -
-
- ); - } - return ( -
- -
+
+ {isLoading ? ( +
+

Loading products...

+
+ ) : ( +
+ +
+ )} +