diff --git a/pages/store/category/[slug].js b/pages/store/category/[slug].js index a1bb6fe..05d04d7 100644 --- a/pages/store/category/[slug].js +++ b/pages/store/category/[slug].js @@ -37,16 +37,14 @@ export default function Category({category: {items, children, parent, ...categor ))} } -
- {items.length > 0 ? ( -
- {items.map(item=> - - )} -
- ) :

No items found

} -
+ {items.length > 0 ? ( +
+ {items.map(item=> + + )} +
+ ) :

No items found

} ) }