Skip to content

Commit 1cebd3a

Browse files
committed
Update SingleProduct.component.tsx
1 parent a6e91fb commit 1cebd3a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/Product/SingleProduct.component.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,10 @@ const SingleProduct = ({ product }: IProductRootObject) => {
139139
<AddToCart
140140
product={product}
141141
variationId={selectedVariation}
142+
fullWidth={true}
142143
/>
143144
)}
144-
{!product.variations && <AddToCart product={product} />}
145+
{!product.variations && <AddToCart product={product} fullWidth={true} />}
145146
</div>
146147
</div>
147148
</div>

0 commit comments

Comments
 (0)