diff --git a/client/src/pages/Brands.jsx b/client/src/pages/Brands.jsx
index 3295d20..11991e7 100644
--- a/client/src/pages/Brands.jsx
+++ b/client/src/pages/Brands.jsx
@@ -154,17 +154,17 @@ export default function Brands() {
{t('brands.noBrands')}
) : (
-
+
{brands.map(brand => {
const displayName = lang === 'ar' && brand.name_ar ? brand.name_ar : brand.name
return (
isSuperadminOrManager && openEditBrand(brand)}
>
{/* Logo area */}
-
+
{brand.logo ? (

) : (
-
- {brand.icon ||
}
+
+ {brand.icon || }
)}
{isSuperadminOrManager && (
-
e.stopPropagation()}>
+
e.stopPropagation()}>
)}
{/* Card body */}
-
-
- {brand.icon && {brand.icon}}
-
{displayName}
-
-
- {brand.name &&
EN: {brand.name}}
- {brand.name_ar &&
AR: {brand.name_ar}}
-
Priority: {brand.priority ?? '—'}
+
+
+ {brand.icon && {brand.icon}}
+
{displayName}
+
+ {brand.name_ar && lang !== 'ar' ? brand.name_ar : brand.name}
+
)