use a tag instead of link as link was bugging

This commit is contained in:
akcodez
2024-03-11 10:03:15 -07:00
parent 1453bb167c
commit 6e4fa72bee

View File

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