Unset default currency
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Hub / build_and_push (push) Waiting to run
Electron App Release / pre_build (push) Waiting to run
Electron App Release / release (AppImage, linux, checksums, checksums, false, ubuntu-20.04) (push) Blocked by required conditions
Electron App Release / release (dmg, mac, checksums, checksums, false, macos-11) (push) Blocked by required conditions
Electron App Release / release (exe, windows, checksums, checksums, true, windows-2022) (push) Blocked by required conditions
GitHub Pages / build-and-deploy (push) Waiting to run
Linting / lint (push) Waiting to run

This commit is contained in:
Minecon724 2025-10-16 21:07:09 +02:00
commit dac88846b2
Signed by untrusted user who does not match committer: m724
GPG key ID: A02E6E67AB961189

View file

@ -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);