Remove aria-hidden attribute on brand icon

This commit is contained in:
nicholas
2023-05-24 12:51:13 +02:00
parent 94df490ef7
commit 02b0e0d1fb
2 changed files with 0 additions and 2 deletions

View File

@@ -18,7 +18,6 @@ export default function BrandIcon({ brand, brandsConfiguration = {} }: BrandIcon
onError={handleError}
alt={brand}
src={imageUrl}
aria-hidden={'true'}
/>
);
}

View File

@@ -23,7 +23,6 @@ const DualBrandingIcon = ({ brand, onClick, dataValue, notSelected, brandsConfig
src={imageUrl}
onClick={onClick}
data-value={dataValue}
aria-hidden={'true'}
/>
);
};