From 207c9b4851c2cd143ff1af408e541a3585226d91 Mon Sep 17 00:00:00 2001 From: Bowrna Date: Fri, 27 Mar 2026 11:43:31 +0530 Subject: [PATCH] fix(login): Redirect to FC dashboard site page --- frappe/www/login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/www/login.py b/frappe/www/login.py index 1c7ea171ff..417c783426 100644 --- a/frappe/www/login.py +++ b/frappe/www/login.py @@ -113,7 +113,7 @@ def get_context(context): context["login_with_email_link"] = frappe.get_system_settings("login_with_email_link") context["login_with_frappe_cloud_url"] = ( - f"{get_site_login_url()}?redirect=/dashboard/sites/{frappe.local.site}" + f"{get_site_login_url()}?redirect=/dashboard/sites/{frappe.local.site}/insights/overview" if on_frappecloud() and frappe.conf.get("fc_communication_secret") else None )