diff --git a/components/auth/SignUpView.tsx b/components/auth/SignUpView.tsx index 1b619828b..b72b7037f 100644 --- a/components/auth/SignUpView.tsx +++ b/components/auth/SignUpView.tsx @@ -34,8 +34,8 @@ const SignUpView: FC = () => { setMessage('') await signup({ email, - firstName, - lastName, + // firstName, + // lastName, password, }) setLoading(false) diff --git a/components/product/ProductCard/ProductCard.tsx b/components/product/ProductCard/ProductCard.tsx index c2e210367..69a6c4b66 100644 --- a/components/product/ProductCard/ProductCard.tsx +++ b/components/product/ProductCard/ProductCard.tsx @@ -10,7 +10,7 @@ interface Props { className?: string product: Product variant?: 'slim' | 'simple' - imgProps?: Omit + imgProps?: Omit } const placeholderImg = '/product-img-placeholder.svg' @@ -38,7 +38,7 @@ const ProductCard: FC = ({ alt={product.name || 'Product Image'} height={320} width={320} - layout="fixed" + layout="fixed" {...imgProps} /> )}