From 5227b349fbeceead5d65ec6e5a5d99bd5826b770 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 15:17:42 +0000 Subject: [PATCH 1/3] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index e37cdc8..3949fed 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -39,7 +39,7 @@ export default function BlogPage() {
{!isLoading && posts && posts.length > 0 && ( Date: Mon, 23 Feb 2026 15:17:43 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index e6b77ae..eaefdf9 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -46,8 +46,7 @@ function ProductDetailContent({ name={product.name} description={product.description || ""} price={product.price || ""} - image={product.imageSrc || ""} - imageAlt={product.imageAlt || product.name} + images={[{ src: product.imageSrc || "", alt: product.imageAlt || product.name }]} onAddToCart={handleAddToCart} /> Date: Mon, 23 Feb 2026 15:17:44 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 53f85f1..a92508d 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -12,19 +12,19 @@ function ShopPageContent() { const { products, isLoading, - searchTerm, - setSearchTerm, - selectedCategory, - setSelectedCategory, + search, + setSearch, + category, + setCategory, } = useProductCatalog(); return ( ); } -- 2.49.1