I'm building an App using Angular + Ionic.
When I present the data in an observable in my template using the async pipe.
My understanding is that Angular automatically unsubscribe from the observable when the component is destroyed, but, if I move to another page, the ngOnDestroy event is not being fired. Does it mean that I'm not unsubscribing from the observable?
Thanks!