From bbea353ef0897900a59292573d6a36038e860aa2 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 13 Jun 2024 14:26:53 +0200 Subject: [PATCH] rm console.log --- .../app/_views/products/product-list/product-list.component.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/matsen-tool/src/app/_views/products/product-list/product-list.component.ts b/matsen-tool/src/app/_views/products/product-list/product-list.component.ts index c44d745..b097c13 100644 --- a/matsen-tool/src/app/_views/products/product-list/product-list.component.ts +++ b/matsen-tool/src/app/_views/products/product-list/product-list.component.ts @@ -200,7 +200,6 @@ export class ProductListComponent implements OnInit, AfterViewInit { } getProductFromElement(element: any): ProductJsonld { - console.log(element['product']); if (this.user !== undefined) { return element['product']; } else if (this.partner !== undefined) { @@ -281,7 +280,6 @@ export class ProductListComponent implements OnInit, AfterViewInit { }); const userConfirmed = confirm(confirmMessage); if (userConfirmed) { - console.log(element); if (this.partner) { this.partnerProductService.partnerProductsIdDelete(this.appHelperService.extractId(element.id)).subscribe( data => {