From 8640a541055c330e67f5040fb9b5f093bc62ad42 Mon Sep 17 00:00:00 2001 From: Harish R S Date: Thu, 25 Jun 2026 20:35:34 +0530 Subject: [PATCH] fix: align INR formatPrice multiplier with declared rate The INR entry declares rate: 88.32 but formatPrice() hardcoded price * 88, causing all INR prices to be undervalued by ~0.36%. EUR correctly uses price * 0.86 matching its declared rate. This brings INR into the same pattern. Signed-off-by: Harish R S --- src/utils/currencies.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/currencies.js b/src/utils/currencies.js index 0e83d9f91062d..ed5becabe8030 100644 --- a/src/utils/currencies.js +++ b/src/utils/currencies.js @@ -33,7 +33,7 @@ export const Currencies = { currency: "INR", minimumFractionDigits: roundForDisplay ? 0 : 2, maximumFractionDigits: roundForDisplay ? 0 : 2, - }).format(price * 88), + }).format(price * 88.32), }, };