fix: remove console.log
diff --git a/erpnext/templates/includes/cart/cart_address.html b/erpnext/templates/includes/cart/cart_address.html
index 3c8267c..84a9430 100644
--- a/erpnext/templates/includes/cart/cart_address.html
+++ b/erpnext/templates/includes/cart/cart_address.html
@@ -63,7 +63,6 @@
});
$('.btn-new-address').click(() => {
- console.log('clicked');
const d = new frappe.ui.Dialog({
title: __('New Address'),
fields: [
@@ -177,12 +176,5 @@
function toggle_billing_address_section(flag) {
$('[data-section="billing-address"]').toggle(flag);
}
-
- $('.btn-change-address').click(() => {
- // const d = new frappe.ui.Dialog({
- // })
-
- // d.show();
- });
});
</script>