This error could also be because you are not subscribing to the Observable.
Example, instead of:
this.products = this.productService.getProducts();
do this:
this.productService.getProducts().subscribe({
next: products=>this.products = products,
error: err=>this.errorMessage = err
});