diff --git a/adminfront/src/components/layout/AppLayout.tsx b/adminfront/src/components/layout/AppLayout.tsx index f28178d8..d9b68d46 100644 --- a/adminfront/src/components/layout/AppLayout.tsx +++ b/adminfront/src/components/layout/AppLayout.tsx @@ -286,6 +286,49 @@ function AppLayout() { + + {/* Manageable Tenants Section */} + {profile?.manageableTenants && + profile.manageableTenants.length > 0 && ( +
+

+ {t( + "ui.admin.profile.manageable_tenants", + "Manageable Tenants", + )} +

+
+ {profile.manageableTenants.map((tenant) => ( + + ))} +
+
+ )} +