mirror of
https://github.com/vercel/commerce.git
synced 2025-04-04 10:45:54 +00:00
Fixed another product type
This commit is contained in:
parent
62ed50a646
commit
c621874250
@ -43,7 +43,7 @@ const ProductView: FC<Props> = ({ product }) => {
|
|||||||
try {
|
try {
|
||||||
await addItem({
|
await addItem({
|
||||||
productId: String(product.id),
|
productId: String(product.id),
|
||||||
variantId: variant ? variant.id : product.variants[0].id,
|
variantId: String(variant ? variant.id : product.variants[0].id),
|
||||||
})
|
})
|
||||||
openSidebar()
|
openSidebar()
|
||||||
setLoading(false)
|
setLoading(false)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user