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$;
}