From b6e76336a479be005f2e0caadd159b5e80a48062 Mon Sep 17 00:00:00 2001
From: karthikalakshmi
Date: Thu, 26 Feb 2026 12:12:55 +0530
Subject: [PATCH] Mrp Condition
---
.../BookingScreen/Components/BSItemCards/BSItemCard.jsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Pages/BookingScreen/Components/BSItemCards/BSItemCard.jsx b/src/Pages/BookingScreen/Components/BSItemCards/BSItemCard.jsx
index eec4a2c..335e947 100644
--- a/src/Pages/BookingScreen/Components/BSItemCards/BSItemCard.jsx
+++ b/src/Pages/BookingScreen/Components/BSItemCards/BSItemCard.jsx
@@ -6485,7 +6485,7 @@ const BSItemCard = (props) => {
: '',
}}
>
- MRP: ₹ {ItemMRP(item)}
+ {ItemMRP(item) > 0 ? `MRP: ₹ ${ItemMRP(item)}` : ''}
)}
@@ -6932,7 +6932,7 @@ const BSItemCard = (props) => {
: '',
}}
>
- MRP: ₹ {ItemMRP(item)}
+ {ItemMRP(item) > 0 ? `MRP: ₹ ${ItemMRP(item)}` : ''}
)}
@@ -7258,7 +7258,7 @@ const BSItemCard = (props) => {
)) && (
- MRP: ₹ {ItemMRP(item)}
+ {ItemMRP(item) > 0 ? `MRP: ₹ ${ItemMRP(item)}` : ''}
)}