From 6fefbb34173ad28ef57b0f026116a880c0819da3 Mon Sep 17 00:00:00 2001 From: Ashelyn Dawn Date: Sat, 28 Nov 2020 01:12:43 -0700 Subject: [PATCH] Show full size item cards in category page --- pages/store/category/[slug].js | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) 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

} ) }