diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 4a2b97b..e37cdc8 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -39,9 +39,7 @@ export default function BlogPage() {
{!isLoading && posts && posts.length > 0 && (
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index a92508d..53f85f1 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -12,19 +12,19 @@ function ShopPageContent() {
const {
products,
isLoading,
- search,
- setSearch,
- category,
- setCategory,
+ searchTerm,
+ setSearchTerm,
+ selectedCategory,
+ setSelectedCategory,
} = useProductCatalog();
return (
);
}