fix(v2): fix minor a11y issue with headings (#4792)

This commit is contained in:
Alexey Pyltsyn 2021-05-18 15:41:30 +03:00 committed by GitHub
parent be9f9d6df7
commit d2a455992d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,7 +71,7 @@ function Footer(): JSX.Element | null {
{links.map((linkItem, i) => (
<div key={i} className="col footer__col">
{linkItem.title != null ? (
<h4 className="footer__title">{linkItem.title}</h4>
<div className="footer__title">{linkItem.title}</div>
) : null}
{linkItem.items != null &&
Array.isArray(linkItem.items) &&