Skip to content

Commit

Permalink
[EddieHubCommunity#308] Some Images missing "alt" property
Browse files Browse the repository at this point in the history
Fixes EddieHubCommunity#308

This pull request addresses missing alt property in some images reported in EddieHubCommunity#308 .
The changes iinclude setting the alt value to the name of the person testifying.
  • Loading branch information
abdqudus authored Dec 17, 2023
1 parent 77877d4 commit 1ddd00a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Testimonials.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function Testimonials() {
testimonial.author.username +
'.png'
}
alt=""
alt={`${testimonial.author.name} image}
width={56}
height={56}
/>
Expand Down

0 comments on commit 1ddd00a

Please sign in to comment.