From e1454d34590e01b39031300f446128e1cc814d73 Mon Sep 17 00:00:00 2001 From: Michael Novotny Date: Thu, 3 Aug 2023 18:40:34 -0500 Subject: [PATCH] Removes priority on third grid item on home page --- 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 abb379e5cc..23b3f89910 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 (
- - + + );