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 (
- - + + );