task: temporarily disable for the build

This commit is contained in:
Zaiste 2021-05-18 15:42:57 +02:00
parent 02cf125282
commit 5f41b6a057
No known key found for this signature in database
GPG Key ID: 15DF7EBC7F2FFE35
2 changed files with 4 additions and 4 deletions

View File

@ -34,8 +34,8 @@ const SignUpView: FC<Props> = () => {
setMessage('')
await signup({
email,
firstName,
lastName,
// firstName,
// lastName,
password,
})
setLoading(false)

View File

@ -10,7 +10,7 @@ interface Props {
className?: string
product: Product
variant?: 'slim' | 'simple'
imgProps?: Omit<ImageProps, 'src'>
imgProps?: Omit<any, 'src'>
}
const placeholderImg = '/product-img-placeholder.svg'
@ -38,7 +38,7 @@ const ProductCard: FC<Props> = ({
alt={product.name || 'Product Image'}
height={320}
width={320}
layout="fixed"
layout="fixed"
{...imgProps}
/>
)}