diff --git a/src/components/Product/DisplayProducts.component.tsx b/src/components/Product/DisplayProducts.component.tsx index acb962344..6857013eb 100644 --- a/src/components/Product/DisplayProducts.component.tsx +++ b/src/components/Product/DisplayProducts.component.tsx @@ -111,7 +111,7 @@ const DisplayProducts = ({ products }: IDisplayProductsProps) => ( >
-

+

{name}

@@ -120,11 +120,11 @@ const DisplayProducts = ({ products }: IDisplayProductsProps) => ( {/* Display sale price when on sale */} {onSale && (
-
+
{variations && filteredVariantPrice(price, '')} {!variations && salePrice}
-
+
{variations && filteredVariantPrice(price, 'right')} {!variations && regularPrice}
@@ -132,7 +132,7 @@ const DisplayProducts = ({ products }: IDisplayProductsProps) => ( )} {/* Display regular price when not on sale */} {!onSale && ( -

{price}

+

{price}

)}
); diff --git a/src/components/Product/SingleProduct.component.tsx b/src/components/Product/SingleProduct.component.tsx index d8c26c1d2..1c416a7e6 100644 --- a/src/components/Product/SingleProduct.component.tsx +++ b/src/components/Product/SingleProduct.component.tsx @@ -85,7 +85,7 @@ const SingleProduct = ({ product }: IProductRootObject) => { {/* Display sale price when on sale */} {onSale && (
-

+

{product.variations && filteredVariantPrice(price, '')} {!product.variations && salePrice}