diff --git a/components/grid/three-items.tsx b/components/grid/three-items.tsx
index a03520348..0f072172d 100644
--- a/components/grid/three-items.tsx
+++ b/components/grid/three-items.tsx
@@ -33,15 +33,13 @@ export async function ThreeItemGrid() {
collection: 'hidden-homepage-featured-items'
});
- // if (!homepageItems[0] || !homepageItems[1] || !homepageItems[2]) return null;
-
- const [firstProduct, secondProduct, thirdProduct] = homepageItems;
-
return (
-
- {firstProduct && }
- {secondProduct && }
- {thirdProduct && }
-
+ <>
+
+ {homepageItems.map(item => (
+
+ ))}
+
+ >
);
}