From 9e322363597d4f506c7c8a5a04a5f80afb452d3a Mon Sep 17 00:00:00 2001 From: jinchung Date: Thu, 12 Sep 2024 00:29:08 -0400 Subject: [PATCH] Update South Korea and Japan currencies as they do not use decimals --- src/references/supportedCurrencies.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/references/supportedCurrencies.ts b/src/references/supportedCurrencies.ts index 9c356d87fd4..ef1588a377a 100644 --- a/src/references/supportedCurrencies.ts +++ b/src/references/supportedCurrencies.ts @@ -98,8 +98,8 @@ export const supportedCurrencies = { emoji: '🇰🇷', emojiName: 'south_korea', label: i18n.t(i18n.l.settings.currency.KRW), - mask: '[099999999999]{.}[00]', - placeholder: '0.00', + mask: '[099999999999]', + placeholder: '0', userAssetsSmallThreshold: 100, smallThreshold: 1000, symbol: '₩', @@ -139,12 +139,12 @@ export const supportedCurrencies = { alignment: 'left', assetLimit: 1, currency: 'JPY', - decimals: 2, + decimals: 0, emoji: '🇯🇵', emojiName: 'japan', label: i18n.t(i18n.l.settings.currency.JPY), - mask: '[099999999999]{.}[00]', - placeholder: '0.00', + mask: '[099999999999]', + placeholder: '0', userAssetsSmallThreshold: 10, smallThreshold: 100, symbol: '¥',