diff --git a/client/src/components/TeamMemberPanel.jsx b/client/src/components/TeamMemberPanel.jsx
index f7942e6..a0a4baf 100644
--- a/client/src/components/TeamMemberPanel.jsx
+++ b/client/src/components/TeamMemberPanel.jsx
@@ -249,7 +249,7 @@ export default function TeamMemberPanel({ member, isEditingSelf, onClose, onSave
- {isEditingSelf ? (
+ {isEditingSelf && userRole !== 'superadmin' ? (
{(form.brands || []).length === 0 ? '—' : (form.brands || []).join(', ')}
@@ -317,7 +317,7 @@ export default function TeamMemberPanel({ member, isEditingSelf, onClose, onSave
{/* Modules toggle */}
- {!isEditingSelf && canManageTeam && (
+ {(!isEditingSelf || userRole === 'superadmin') && canManageTeam && (