Skip to content

Commit e6f4856

Browse files
committed
Update SingleProduct.component.tsx
1 parent 0c68b0a commit e6f4856

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Product/SingleProduct.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
8383
<div className="text-center md:text-left mb-6">
8484
{onSale ? (
8585
<div className="flex flex-col md:flex-row items-center md:items-start gap-2">
86-
<p className="text-2xl font-bold text-red-600">
86+
<p className="text-xl font-bold text-red-600">
8787
{product.variations
8888
? filteredVariantPrice(price, '')
8989
: salePrice}
@@ -95,7 +95,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
9595
</p>
9696
</div>
9797
) : (
98-
<p className="text-2xl font-bold">{price}</p>
98+
<p className="text-xl font-bold">{price}</p>
9999
)}
100100
</div>
101101

0 commit comments

Comments
 (0)