You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Did we resolve this in the discussion group for the Angular: Getting Started course? I'm going to close this issue. Please reopen it if this was not resolved.
getProduct(id: number) {
this.productService.getProductsFromServer**(id)**.subscribe({
next: (productFromServer) => (this.products = productFromServer),
error: (err) => (this.errorMessage = err),
});
}
ERROR in src/app/products/product-detail.component.ts:31:47 - error TS2554: Expected 0 arguments, but got 1.
The text was updated successfully, but these errors were encountered: