mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-29 03:44:20 +01:00
Order currency list alphabetically
This commit is contained in:
committed by
Paul Miller
parent
0847f4c332
commit
152aee0cfe
@@ -101,7 +101,7 @@ export const FIAT_OPTIONS: Currency[] = [
|
||||
maxFractionalDigits: 0
|
||||
},
|
||||
{ label: "Kuwaiti Dinar KWD", value: "KWD", maxFractionalDigits: 3 }
|
||||
];
|
||||
].sort((a, b) => (a.value > b.value ? 1 : b.value > a.value ? -1 : 0));
|
||||
|
||||
export function ChooseCurrency() {
|
||||
const i18n = useI18n();
|
||||
|
||||
Reference in New Issue
Block a user