From 9dee534b2fc2030610731b18421db9fed80f4a40 Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Mon, 23 Mar 2026 21:56:49 +0100 Subject: [PATCH] fix(tenancy): correct API path for merchant team page JS was calling /merchants/tenancy/account/team but the endpoint is mounted at /merchants/account/team (no tenancy prefix in the path). 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 8a39086d..8410cb24 100644 --- a/app/modules/tenancy/templates/tenancy/merchant/team.html +++ b/app/modules/tenancy/templates/tenancy/merchant/team.html @@ -127,7 +127,7 @@ function merchantTeam() { async init() { try { - this.data = await apiClient.get('/merchants/tenancy/account/team'); + this.data = await apiClient.get('/merchants/account/team'); } catch (e) { this.error = e.message || 'Failed to load team data'; } finally {