Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
fix: alt text on item img (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaganpreetKaurKalsi authored Jun 30, 2024
1 parent 1beffb4 commit e9f298b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/list/Item.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function Item({ data }) {
<Image
className="h-12 w-12 flex-none rounded-full bg-gray-50"
src={data.image}
alt={data.description}
alt={`${data.urlText} avatar`}
width={48}
height={48}
/>
Expand Down

0 comments on commit e9f298b

Please sign in to comment.