We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fec3d9 commit 53471cbCopy full SHA for 53471cb
src/navigation/components/Logo/Logo.tsx
@@ -22,7 +22,7 @@ const Logo: React.FC<LogoProps> = (props) => {
22
const textData = themedLogoProps.text || props.text;
23
24
return (
25
- <RouterLink href={themedLogoProps.url || '/'} passHref>
+ <RouterLink href={themedLogoProps.url || props.url || '/'} passHref>
26
<div className={b(null, props.className)}>
27
{imageData && <Image className={b('icon')} {...imageData} />}
28
<span className={b('text')}>{textData}</span>
0 commit comments