fix(dashboard): added missing currencies (#13214)
Related to #13086, #12440 and #12668 Currencies were added in the migrations, but not in the admin dashboard list, causing admin display errors. This mod should fix that Co-authored-by: William Bouchard <46496014+willbouch@users.noreply.github.com>
This commit is contained in:
@@ -451,6 +451,12 @@ export const currencies: Record<string, CurrencyInfo> = {
|
||||
symbol_native: "MURs",
|
||||
decimal_digits: 0,
|
||||
},
|
||||
MWK: {
|
||||
code: "MWK",
|
||||
name: "Malawian Kwacha",
|
||||
symbol_native: "K",
|
||||
decimal_digits: 2,
|
||||
},
|
||||
MXN: {
|
||||
code: "MXN",
|
||||
name: "Mexican Peso",
|
||||
@@ -709,6 +715,12 @@ export const currencies: Record<string, CurrencyInfo> = {
|
||||
symbol_native: "CFA",
|
||||
decimal_digits: 0,
|
||||
},
|
||||
XPF: {
|
||||
code: "XPF",
|
||||
name: "CFP Franc",
|
||||
symbol_native: "₣",
|
||||
decimal_digits: 0,
|
||||
},
|
||||
YER: {
|
||||
code: "YER",
|
||||
name: "Yemeni Rial",
|
||||
|
||||
Reference in New Issue
Block a user