From 1ddd00a3c5ca0b848588931ae37737a2981a4a9d Mon Sep 17 00:00:00 2001 From: AbdQudus Gbadamosi <85309655+abdqudus@users.noreply.github.com> Date: Sun, 17 Dec 2023 08:57:22 +0100 Subject: [PATCH 1/2] [#308] Some Images missing "alt" property Fixes #308 This pull request addresses missing alt property in some images reported in #308 . The changes iinclude setting the alt value to the name of the person testifying. --- src/components/Testimonials.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Testimonials.jsx b/src/components/Testimonials.jsx index a2f1390..f293e0f 100644 --- a/src/components/Testimonials.jsx +++ b/src/components/Testimonials.jsx @@ -129,7 +129,7 @@ export function Testimonials() { testimonial.author.username + '.png' } - alt="" + alt={`${testimonial.author.name} image} width={56} height={56} /> From a7aa244fe983f0d1e663e69d2c7953a793bf44bd Mon Sep 17 00:00:00 2001 From: AbdQudus Gbadamosi <85309655+abdqudus@users.noreply.github.com> Date: Sun, 17 Dec 2023 17:23:36 +0100 Subject: [PATCH 2/2] [#308] Some Images missing "alt" property --- src/components/Testimonials.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/Testimonials.jsx b/src/components/Testimonials.jsx index f293e0f..932e22c 100644 --- a/src/components/Testimonials.jsx +++ b/src/components/Testimonials.jsx @@ -129,8 +129,7 @@ export function Testimonials() { testimonial.author.username + '.png' } - alt={`${testimonial.author.name} image} - width={56} + alt={`${testimonial.author.name}'s profile picture`} height={56} />