diff --git a/stores/ActivityStore.ts b/stores/ActivityStore.ts index b0e302b0a..0b6f742da 100644 --- a/stores/ActivityStore.ts +++ b/stores/ActivityStore.ts @@ -124,21 +124,17 @@ export default class ActivityStore { @action public updateInvoices = async () => { - this.activity = []; await this.invoicesStore.getInvoices(); - this.activity = this.getSortedActivity(); - this.filteredActivity = this.activity; + await this.setFilters(this.filters); }; @action public updateTransactions = async () => { - this.activity = []; if (RESTUtils.supportsOnchainSends()) await this.transactionsStore.getTransactions(); - this.activity = this.getSortedActivity(); - this.filteredActivity = this.activity; + await this.setFilters(this.filters); }; @action