diff --git a/src/User/pages/Popular_Categories/Beauty-Wellness.jsx b/src/User/pages/Popular_Categories/Beauty-Wellness.jsx
index 15816dc00..adba2edae 100644
--- a/src/User/pages/Popular_Categories/Beauty-Wellness.jsx
+++ b/src/User/pages/Popular_Categories/Beauty-Wellness.jsx
@@ -23,6 +23,7 @@ function BeautyWellness() {
price: product.price,
category: product.category,
image: product.images[0] || "",
+ discountPercentage: product.discountPercentage,
rating: {
rate: product.rating,
count: product.reviews ? product.reviews.length : 0,
diff --git a/src/User/pages/Popular_Categories/Body-Care.jsx b/src/User/pages/Popular_Categories/Body-Care.jsx
index b711da431..80dcf41ea 100644
--- a/src/User/pages/Popular_Categories/Body-Care.jsx
+++ b/src/User/pages/Popular_Categories/Body-Care.jsx
@@ -24,6 +24,7 @@ function BodyCare() {
price: product.price,
category: product.category,
image: product.images[0] || "", // Ensuring the images array is present
+ discountPercentage: product.discountPercentage,
rating: {
rate: product.rating,
count: product.reviews ? product.reviews.length : 0,
diff --git a/src/User/pages/Popular_Categories/Customized-Gifts.jsx b/src/User/pages/Popular_Categories/Customized-Gifts.jsx
index a63dd1fac..f360261df 100644
--- a/src/User/pages/Popular_Categories/Customized-Gifts.jsx
+++ b/src/User/pages/Popular_Categories/Customized-Gifts.jsx
@@ -23,6 +23,7 @@ function CustomizedGifts() {
price: product.price,
category: product.category,
image: product.images[0] || "", // Ensuring the images array is present
+ discountPercentage: product.discountPercentage,
rating: {
rate: product.rating,
count: product.reviews.length || 0, // Ensuriing reviews array is present
diff --git a/src/User/pages/Popular_Categories/Fashion-Accessories.jsx b/src/User/pages/Popular_Categories/Fashion-Accessories.jsx
index 130f13a57..d6869deca 100644
--- a/src/User/pages/Popular_Categories/Fashion-Accessories.jsx
+++ b/src/User/pages/Popular_Categories/Fashion-Accessories.jsx
@@ -23,6 +23,7 @@ function FashionAccessories() {
price: product.price,
category: product.category,
image: product.images[0] || "", // Ensuring the images array is present
+ discountPercentage: product.discountPercentage,
rating: {
rate: product.rating,
count: product.reviews.length || 0, // Ensuriing reviews array is present
diff --git a/src/User/pages/Popular_Categories/Food-Beverages.jsx b/src/User/pages/Popular_Categories/Food-Beverages.jsx
index e759e10d9..29a5bbac2 100644
--- a/src/User/pages/Popular_Categories/Food-Beverages.jsx
+++ b/src/User/pages/Popular_Categories/Food-Beverages.jsx
@@ -23,6 +23,7 @@ function FoodBeverages() {
price: product.price,
category: product.category,
image: product.images[0] || "", // Ensuring the images array is present
+ discountPercentage: product.discountPercentage,
rating: {
rate: product.rating,
count: product.reviews.length || 0, // Ensuriing reviews array is present
diff --git a/src/User/pages/Popular_Categories/Furniture-Decor.jsx b/src/User/pages/Popular_Categories/Furniture-Decor.jsx
index 40dd8ad1d..86db01e33 100644
--- a/src/User/pages/Popular_Categories/Furniture-Decor.jsx
+++ b/src/User/pages/Popular_Categories/Furniture-Decor.jsx
@@ -23,6 +23,7 @@ function FurnitureDecor() {
price: product.price,
category: product.category,
image: product.images[0] || "", // Ensuring the images array is present
+ discountPercentage: product.discountPercentage,
rating: {
rate: product.rating,
count: product.reviews.length || 0, // Ensuriing reviews array is present
diff --git a/src/User/pages/Popular_Categories/Health-Supplements.jsx b/src/User/pages/Popular_Categories/Health-Supplements.jsx
index 91970e80d..0c640f758 100644
--- a/src/User/pages/Popular_Categories/Health-Supplements.jsx
+++ b/src/User/pages/Popular_Categories/Health-Supplements.jsx
@@ -23,6 +23,7 @@ function HealthSupplements() {
price: product.price,
category: product.category,
image: product.images[0] || "", // Ensuring the images array is present
+ discountPercentage: product.discountPercentage,
rating: {
rate: product.rating,
count: product.reviews.length || 0, // Ensuriing reviews array is present
diff --git a/src/User/pages/Popular_Categories/Printing-Stationery.jsx b/src/User/pages/Popular_Categories/Printing-Stationery.jsx
index 09c0dded1..41346254c 100644
--- a/src/User/pages/Popular_Categories/Printing-Stationery.jsx
+++ b/src/User/pages/Popular_Categories/Printing-Stationery.jsx
@@ -23,6 +23,7 @@ function PrintingStationery() {
price: product.price,
category: product.category,
image: product.images[0] || "", // Ensuring the images array is present
+ discountPercentage: product.discountPercentage,
rating: {
rate: product.rating,
count: product.reviews.length || 0, // Ensuriing reviews array is present
diff --git a/src/User/redux/cartSlice.jsx b/src/User/redux/cartSlice.jsx
index 1160651d8..e7e4fd964 100644
--- a/src/User/redux/cartSlice.jsx
+++ b/src/User/redux/cartSlice.jsx
@@ -29,7 +29,7 @@ const cartSlice = createSlice({
oldPrice: product.price || product.oldPrice,
newPrice: product.newPrice,
total: newQuantity * product.newPrice,
- image: product.image,
+ image: product.thumbnail,
}
: []
)