diff --git a/components/core/UserNav/DropdownMenu.tsx b/components/core/UserNav/DropdownMenu.tsx index 1f935657c..241ac08d8 100644 --- a/components/core/UserNav/DropdownMenu.tsx +++ b/components/core/UserNav/DropdownMenu.tsx @@ -40,8 +40,8 @@ const DropdownMenu: FC = ({ open = false }) => { > {LINKS.map(({ name, href }) => ( - - + + {({ active }) => ( {name} )} diff --git a/components/product/ProductCard/ProductCard.tsx b/components/product/ProductCard/ProductCard.tsx index 0ff4cd56c..6383686b2 100644 --- a/components/product/ProductCard/ProductCard.tsx +++ b/components/product/ProductCard/ProductCard.tsx @@ -24,7 +24,7 @@ const ProductCard: FC = ({ imgHeight, priority, }) => { - const src = p.images.edges?.[0]?.node.urlOriginal! + const src = p.images.edges?.[0]?.node.urlLarge! if (variant === 'slim') { return ( @@ -35,7 +35,7 @@ const ProductCard: FC = ({