From 884a694718fb88190c87b3065cdd5278f37f6c73 Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Mon, 23 Mar 2026 21:50:49 +0100 Subject: [PATCH] fix(tenancy): use correct block name for merchant team page scripts Template used {% block scripts %} but merchant base.html defines {% block extra_scripts %}. The merchantTeam() function never rendered, causing "merchantTeam is not defined" errors. Co-Authored-By: Claude Opus 4.6 (1M context) --- app/modules/tenancy/templates/tenancy/merchant/team.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/tenancy/templates/tenancy/merchant/team.html b/app/modules/tenancy/templates/tenancy/merchant/team.html index a55cdd40..8a39086d 100644 --- a/app/modules/tenancy/templates/tenancy/merchant/team.html +++ b/app/modules/tenancy/templates/tenancy/merchant/team.html @@ -117,7 +117,7 @@ {% endblock %} -{% block scripts %} +{% block extra_scripts %}