fix: removed saas_billing_base_url used for testing

This commit is contained in:
Shariq Ansari 2024-11-11 13:45:12 +05:30
parent cd8320b24c
commit afa817d40c

View file

@ -5,7 +5,7 @@ from frappe import _
def get_base_url():
url = frappe.conf.get("saas_billing_base_url") or "https://frappecloud.com"
url = "https://frappecloud.com"
if frappe.conf.developer_mode and frappe.conf.get("saas_billing_base_url"):
url = frappe.conf.get("saas_billing_base_url")
return url