I have a component with this code
this.service().subscribe((result) => { this.service2(result).subscribe((result2) => //other code }}
I'm applying good practices in Angular and seems this is not a good approach for this kind of code. But not sure how to improve this.
any suggestion?