Magyarázd el a fentebb lévő Angular komponens kódjában lévő problémát, és hogyan tudod kijavítani:
```typescript
@Component({
selector: 'app-user',
template: './user.component.html',
stylesUrls: './user.component.scs',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class CmfUserComponent {
users$: any;
constructor() {
const api = new BackendService();
this.users$ = api.getUsers();
}
}
```