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}`;