This could be a sign that you may have a lot of active subscriptions which leaks memory.
It is possible that after you a create subscriptions later you might forgot to unsubscribe. This is really important because otherwise subscriptions will still be active and leak memory. One way to do this is when the component is destroyed (implement OnDestroy life cycle interface with onDestroy method (angular.io/guide/lifecycle-hooks) and unsubscribe there). Or check: alligator.io/angular/takeuntil-rxjs-unsubscribe Other solutions is to not to subscribe to Observables but use the async pipe because that will manage the subscription and automatically unsubscribes: angular.io/guide/observables-in-angular
I don't know about any easy way to find those, so go though your code and check if you forgot to unsubscribe from them.