remove console.log

This commit is contained in:
zino
2021-07-28 15:25:33 +02:00
parent 269b982575
commit 5d0c971d83

View File

@@ -122,8 +122,6 @@ function appendOption(inSelector: string, inArr: I.TypeBuyerTypeArr): void {
const price: string = getPriceInEur(<string>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}`;