From 5d0c971d83504f2101efeb5b2590c2bd66481b8e Mon Sep 17 00:00:00 2001 From: zino Date: Wed, 28 Jul 2021 15:25:33 +0200 Subject: [PATCH] remove console.log --- client/src/modules/cart.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/src/modules/cart.ts b/client/src/modules/cart.ts index 74c60f4..c894a99 100644 --- a/client/src/modules/cart.ts +++ b/client/src/modules/cart.ts @@ -122,8 +122,6 @@ function appendOption(inSelector: string, inArr: I.TypeBuyerTypeArr): void { const price: string = getPriceInEur(inArr[1]); const dropdownBuyerTypes: HTMLElement = jQuery(inSelector).get(0); - console.log(price); - let opt: HTMLOptionElement = document.createElement('option'); opt.value = id; opt.innerHTML = `${desc} ${price}`;