Feature/upgrade nx to version 12.8.0 (#331)

* Upgrade angular and Nx

* Update changelog
This commit is contained in:
Thomas Kaul
2021-09-04 11:25:40 +02:00
committed by GitHub
parent ad96d6e53e
commit d046f1d498
5 changed files with 2711 additions and 2849 deletions

View File

@@ -13,7 +13,7 @@ export const currencyPairs: Partial<
currency1: Currency;
currency2: Currency;
}
>[] = Object.keys(Currency)
>[] = (Object.keys(Currency) as Array<keyof typeof Currency>)
.filter((currency) => {
return currency !== Currency.USD;
})