hi, there's a problem, I've been trying a lot, but I don't understand why. a connection has been established with the api the data is coming successfully, but the data is coming after clicking on the menu 2 times. the sample video is included in the October
https://drive.google.com/file/d/1GdmwHI3pZJIlcc8oOuQqApfcADFF9PbF/view?usp=sharing
Hi,
The ChangeDetectionStrategy.OnPush
strategy has been set for the root component of the application. If you remove this line of code, the application will revert to using the default change detection strategy.
you can try to remove it from file /src/app/app.component.ts
changeDetection: ChangeDetectionStrategy.OnPush,