In classy/templates/block/block--system-branding-block.html.twig
Right now we provide a title for the logo link:
<a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home" class="site-logo">
This is a poor accessibility practice as it often repeats the alt text for the logo (which is often titled "home".
It would be better to simply not use the redundant title link.
<a href="{{ path('<front>') }}" rel="home" class="site-logo">
Closed: outdated
1.0
Code
It affects the ability of people with disabilities or special needs (such as blindness or color-blindness) to use Drupal.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.