Skip to content

Commit

Permalink
Update South Korea and Japan currencies as they do not use decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchung committed Sep 12, 2024
1 parent f20c652 commit 9e32236
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/references/supportedCurrencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: '₩',
Expand Down Expand Up @@ -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: '¥',
Expand Down

0 comments on commit 9e32236

Please sign in to comment.