Skip to content

Commit 4f1bc1d

Browse files
authored
Merge pull request #1311 from w3bdesign/renovate/node-22.x
Renovate/node 22.x
2 parents 2b2cb19 + b9c655b commit 4f1bc1d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"devDependencies": {
4242
"@playwright/test": "^1.47.1",
4343
"@types/lodash": "^4.17.7",
44-
"@types/node": "22.5.4",
44+
"@types/node": "22.5.5",
4545
"@types/nprogress": "^0.2.3",
4646
"@types/react-instantsearch-dom": "^6.12.8",
4747
"@types/uuid": "^10.0.0",

src/components/Product/SingleProduct.component.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ const SingleProduct = ({ product }: IProductRootObject) => {
7979
/>
8080
)}
8181
<div className="px-4 md:ml-8">
82-
<h1 className="text-3xl font-bold text-center md:text-left mb-4">
82+
<h1 className="text-2xl font-bold text-center md:text-left mb-4">
8383
{name}
8484
</h1>
8585
{/* Display sale price when on sale */}
8686
{onSale && (
8787
<div className="flex flex-col md:flex-row items-center md:items-start mb-4">
88-
<p className="text-3xl font-bold text-gray-900">
88+
<p className="text-2xl font-bold text-gray-900">
8989
{product.variations && filteredVariantPrice(price, '')}
9090
{!product.variations && salePrice}
9191
</p>
@@ -97,7 +97,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
9797
)}
9898
{/* Display regular price when not on sale */}
9999
{!onSale && (
100-
<p className="text-2xl font-bold mb-4">{price}</p>
100+
<p className="text-2xl font-bold mb-4">{price}</p>
101101
)}
102102
<p className="text-lg mb-4 text-center md:text-left">{DESCRIPTION_WITHOUT_HTML}</p>
103103
{Boolean(product.stockQuantity) && (

0 commit comments

Comments
 (0)