0

I am so used to using RXJS in Angular, I have not had the chance to learn vanilla JS async functions yet. With that being said, how would I modify the method below so that this.onFilterButtonClicked() is only fired once this.setState() is finished as an async function? Or is using async even the right thing to do here?

onResetFiltersButtonClicked() {
    this.setState({
        ...this.state,
        selectedFunnelStatuses: []
    });
    this.onFilterButtonClicked();
}
Sandra Willford
  • 3,459
  • 11
  • 49
  • 96

0 Answers0