wip: profile component

This commit is contained in:
2021-06-17 09:55:40 +02:00
parent be534551ba
commit 969ac6feaf
13 changed files with 113 additions and 19 deletions
@@ -86,12 +86,11 @@ export class HotDealsWidgetComponent implements OnInit {
this.apiService.getAmazonPrice(id).subscribe(
price => {
this.amazonPrices.push(price);
this.productsPricesMap[price.product_id].amazonPrice = price;
this.productsPricesMap[price[0].product_id].amazonPrice = price[0];
}
);
}
);
console.log(this.amazonPrices);
}
getSearchedProducts(): void {