Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit cc9cdf0

Browse files
authored
fix: a11y rule "img-redundant-alt" fails with a warning (#4176)
1 parent ba2dba5 commit cc9cdf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/molecules/AnnouncementCard/announcement-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const AnnouncementCard = ({ title, description, bannerSrc, url, cta = "Learn mor
2020
<div className="w-full">
2121
<AspectRatio.Root ratio={1.85 / 1}>
2222
<picture>
23-
<img src={bannerSrc} className="object-cover w-full h-full" alt={`${title} banner image`} />
23+
<img src={bannerSrc} className="object-cover w-full h-full" alt={`${title} banner`} />
2424
</picture>
2525
</AspectRatio.Root>
2626
</div>

0 commit comments

Comments
 (0)