From 5f41b6a057063525cb1e3da6cf3174f410b34591 Mon Sep 17 00:00:00 2001 From: Zaiste Date: Tue, 18 May 2021 15:42:57 +0200 Subject: [PATCH] task: temporarily disable for the `build` --- components/auth/SignUpView.tsx | 4 ++-- components/product/ProductCard/ProductCard.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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} /> )}