deepsourcestatus / test-repository

Prefer not to use words image, photo in image alt content JS-0750
Performance
Minor
8 months ago8 months old
Redundant alt attribute. Screen-readers already announce img tags as an image. You don’t need to use the words image, photo, or picture (or any specified custom words) in the alt prop
 5    <p>
 6        Test
 7        <a href="/about">About Us</a>
 8         <img 9            src="https://example.com/test"10            alt="Landscape picture"11            width={500}12            height={500}13          />14    </p>
15)