Jul 27, 2017 · 1 min read
Hi,
Good article!
Don’t you need to unsubscribe your `this.formChange` on ngOnDestroy? Like this
ngOnDestroy() {
this.formChange && this.formChange.unsubscribe();
}Call the dispatch method on the subscribe response cause me a lot of memory usage sometimes and now I always unsubscribe my Subscription objects.
