Merge pull request #2452 from XRPLF/logo-alt

fix: add alt text to previously undefined variable
This commit is contained in:
Aria Keshmiri
2024-03-12 08:18:21 -07:00
committed by GitHub

View File

@@ -351,7 +351,7 @@ export function LogoBlock(props) {
const { to, img, altText } = props;
return (
<a className="navbar-brand" href="/">
<img className="logo" alt={altText} height="40" src="data:," />
<img className="logo" alt={"XRP LEDGER"} height="40" src="data:," />
</a>
);
}