From 76ff9e87b6efb444319922c3517cc9b62a6d579f Mon Sep 17 00:00:00 2001 From: Mohammed Faiyyaz Khatri Date: Tue, 20 Feb 2024 20:15:01 +0530 Subject: [PATCH] fix(utils): Symbol for Indian Currency (#6453) --- packages/admin-next/dashboard/src/lib/currencies.ts | 2 +- packages/admin-ui/ui/src/utils/currencies.ts | 2 +- packages/medusa/src/utils/currencies.ts | 2 +- packages/utils/src/defaults/currencies.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/admin-next/dashboard/src/lib/currencies.ts b/packages/admin-next/dashboard/src/lib/currencies.ts index ae22a07fbb..5380fc1716 100644 --- a/packages/admin-next/dashboard/src/lib/currencies.ts +++ b/packages/admin-next/dashboard/src/lib/currencies.ts @@ -298,7 +298,7 @@ export const currencies: Record = { INR: { code: "INR", name: "Indian Rupee", - symbol_native: "টকা", + symbol_native: "₹", decimal_digits: 2, }, IQD: { diff --git a/packages/admin-ui/ui/src/utils/currencies.ts b/packages/admin-ui/ui/src/utils/currencies.ts index 7a3784624e..f4c4aedfac 100644 --- a/packages/admin-ui/ui/src/utils/currencies.ts +++ b/packages/admin-ui/ui/src/utils/currencies.ts @@ -448,7 +448,7 @@ export const currencies: CurrenciesType = { INR: { symbol: "Rs", name: "Indian Rupee", - symbol_native: "টকা", + symbol_native: "₹", decimal_digits: 2, rounding: 0, code: "INR", diff --git a/packages/medusa/src/utils/currencies.ts b/packages/medusa/src/utils/currencies.ts index fafcce7d6e..0150a43a68 100644 --- a/packages/medusa/src/utils/currencies.ts +++ b/packages/medusa/src/utils/currencies.ts @@ -444,7 +444,7 @@ export const currencies: Record = { INR: { symbol: "Rs", name: "Indian Rupee", - symbol_native: "টকা", + symbol_native: "₹", decimal_digits: 2, rounding: 0, code: "INR", diff --git a/packages/utils/src/defaults/currencies.ts b/packages/utils/src/defaults/currencies.ts index b5704f519a..4df4d1afec 100644 --- a/packages/utils/src/defaults/currencies.ts +++ b/packages/utils/src/defaults/currencies.ts @@ -444,7 +444,7 @@ export const defaultCurrencies: Record = { INR: { symbol: "Rs", name: "Indian Rupee", - symbol_native: "টকা", + symbol_native: "₹", decimal_digits: 2, rounding: 0, code: "INR",