fix(a11y): use div as logo container instead of ul (#57357)

This commit is contained in:
Gagan Bhullar 2024-12-02 09:53:12 -07:00 committed by GitHub
parent 6057f368f4
commit 466917fbf9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,7 +27,7 @@ const LogoRow = (): JSX.Element => {
>
<Trans>landing.h2-heading-b</Trans>
</p>
<ul
<div
className='logo-row'
data-playwright-test-label='brand-logo-container'
>
@ -45,7 +45,7 @@ const LogoRow = (): JSX.Element => {
<AmazonLogo />
</>
)}
</ul>
</div>
</>
);
};