add alt text to previously undefined variable

This commit is contained in:
akcodez
2024-03-12 08:10:43 -07:00
parent da6a53baea
commit 0d73660ecd

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>
);
}