remove:unnecessary translation
Co-Authored-By: Shivam Mishra <scmmishra@users.noreply.github.com>
diff --git a/erpnext/crm/doctype/appointment/appointment.js b/erpnext/crm/doctype/appointment/appointment.js
index 485520f..fb78d1a 100644
--- a/erpnext/crm/doctype/appointment/appointment.js
+++ b/erpnext/crm/doctype/appointment/appointment.js
@@ -4,7 +4,7 @@
frappe.ui.form.on('Appointment', {
refresh: function(frm) {
if(frm.doc.lead){
- frm.add_custom_button(__(frm.doc.lead),()=>{
+ frm.add_custom_button(frm.doc.lead,()=>{
frappe.set_route("Form","Lead",frm.doc.lead);
});
}