nalanda-data commited on
Commit
c1ef35a
·
verified ·
1 Parent(s): e6ece5f

Remove Book a call mailto from thank-you message

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -15,7 +15,6 @@ from huggingface_hub import HfApi, hf_hub_download
15
  LEADS_REPO = "Nalandadata/leads"
16
  LEADS_FILE = "leads.csv"
17
  TOKEN = os.environ.get("HF_WRITE_TOKEN") # set as a Space secret
18
- BOOK_A_CALL = "mailto:info@nalandadata.ai?subject=Booking%20a%20call%20-%20Nalandadata%20data%20licensing"
19
  SITE = "https://nalandadata.ai/?utm_source=huggingface&utm_medium=contact_space&utm_campaign=lead_form"
20
 
21
  DATASETS = [
@@ -90,8 +89,7 @@ def submit(name, email, organization, role, use_case, datasets, message):
90
  return gr.update(
91
  value=(f"✅ **Thank you, {row['name']}!** Your enquiry has been received.\n\n"
92
  f"We'll reply to **{row['email']}** shortly. "
93
- f"Prefer to talk now? [Book a call]({BOOK_A_CALL}) "
94
- f"or visit [nalandadata.ai]({SITE})."),
95
  visible=True)
96
 
97
 
 
15
  LEADS_REPO = "Nalandadata/leads"
16
  LEADS_FILE = "leads.csv"
17
  TOKEN = os.environ.get("HF_WRITE_TOKEN") # set as a Space secret
 
18
  SITE = "https://nalandadata.ai/?utm_source=huggingface&utm_medium=contact_space&utm_campaign=lead_form"
19
 
20
  DATASETS = [
 
89
  return gr.update(
90
  value=(f"✅ **Thank you, {row['name']}!** Your enquiry has been received.\n\n"
91
  f"We'll reply to **{row['email']}** shortly. "
92
+ f"In the meantime, explore more at [nalandadata.ai]({SITE})."),
 
93
  visible=True)
94
 
95