Removes unnecessary async on ProductGridItems (#977)

This commit is contained in:
Michael Novotny
2023-04-20 13:54:04 -05:00
committed by GitHub
parent acb4ff400b
commit 7de3ae5583
4 changed files with 1 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ import { GridTileImage } from 'components/grid/tile';
import { Product } from 'lib/shopify/types';
import Link from 'next/link';
export default async function ProductGridItems({ products }: { products: Product[] }) {
export default function ProductGridItems({ products }: { products: Product[] }) {
return (
<>
{products.map((product) => (