Skip to content

Commit

Permalink
fix: merge conflic 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinYoung-Kim committed Apr 1, 2024
2 parents f4f7a2f + 34d47bc commit 5498f8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/organisms/ProductCardList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ const ProductCardList = ({
}: ProductCardListProps) => {
return (
<div className={`grid gap-4 ${classNameOfGridCols[gridCols]}`}>
{productList.map(({ thumbnailUrl, id, ...product }, index) => (
{productList.map(({ thumbnailUrl, id, ...product }) => (
<ProductCard
thumbnailUrl={thumbnailUrl}
size={size}
type={type}
key={`ProductCard#${index}`}
key={`ProductCard#${id}`}
id={id}
{...product}
/>
Expand Down

0 comments on commit 5498f8e

Please sign in to comment.