Merge pull request #2449 from XRPLF/navbar-logo-fix

fixL use a tag instead of link as link was bugging
This commit is contained in:
Aria Keshmiri
2024-03-11 11:25:59 -07:00
committed by GitHub

View File

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