From 9044baf44ec556f3cdf6c61781647f5820d2d49f Mon Sep 17 00:00:00 2001 From: Michael Novotny Date: Thu, 3 Aug 2023 19:02:51 -0500 Subject: [PATCH] Removes priority on third grid item on home page (#1143) --- components/grid/three-items.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/components/grid/three-items.tsx b/components/grid/three-items.tsx index abb379e5c..23b3f8991 100644 --- a/components/grid/three-items.tsx +++ b/components/grid/three-items.tsx @@ -3,7 +3,15 @@ import { getCollectionProducts } from 'lib/shopify'; import type { Product } from 'lib/shopify/types'; import Link from 'next/link'; -function ThreeItemGridItem({ item, size }: { item: Product; size: 'full' | 'half' }) { +function ThreeItemGridItem({ + item, + size, + priority +}: { + item: Product; + size: 'full' | 'half'; + priority?: boolean; +}) { return (
- - + + );