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