Force curly if-statements

This commit is contained in:
softsimon
2024-05-13 17:16:28 +07:00
parent d02625eb0d
commit 66f431d3d3
3 changed files with 6 additions and 1 deletions

View File

@@ -175,7 +175,9 @@ export class AddressComponent implements OnInit, OnDestroy {
});
this.transactions = this.tempTransactions;
if (this.transactions.length === this.txCount) this.fullyLoaded = true;
if (this.transactions.length === this.txCount) {
this.fullyLoaded = true;
}
this.isLoadingTransactions = false;
if (!this.showBalancePeriod()) {