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)}` : ''}
)}