79466750

Date: 2025-02-25 13:40:42
Score: 1
Natty:
Report link

Try use:

constructor( private cdr: ChangeDetectionRef ) {}

ngOnInit() {
  this.categories$ = this.shoppingFacade.navigationCategories$();
  this.categories$.pipe().subscribe(res=>{
    this.cdr.detectChanges();
  })

  this.deviceType$ = this.appFacade.deviceType$;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: St_rt_la