how to track component calling in Angular store application
working on a huge angular application which uses angular store. a popup is opened on in click and dispatch a action for showing data. now the popup is displayed with other activity on the application as well . how to track from where its calling or is there tool where we can see which component is calling from where.
I have tried to debug the application but not got much info. also tried with the redux tool.
Code inside subscription of Http observable is not executed
We have an Angular 16.x.x based FE application where when we have an Observable for http request for orders checkout.component. We have placed a toastr inside .next() of the subscription along with a logger and the reason why we have placed the logger is to ensure the success response which we realized for some reasons that sometimes it does not execute the code inside .next(), however the order is placed and success response is ensured from the backend.