diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 8b89d7b..299443e 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -341,7 +341,7 @@ export class AppComponent implements OnInit { } async updateFiatPrices() { - const displayCurrency = this.settings.getAppSetting(`displayCurrency`) || 'USD'; + const displayCurrency = this.settings.getAppSetting(`displayCurrency`) || ''; await this.price.getPrice(displayCurrency); this.walletService.reloadFiatBalances(); setTimeout(() => this.updateFiatPrices(), this.fiatTimeout);