Skip to content

Commit 53471cb

Browse files
committed
fix: fallback logo url without theme
1 parent 6fec3d9 commit 53471cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/navigation/components/Logo/Logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const Logo: React.FC<LogoProps> = (props) => {
2222
const textData = themedLogoProps.text || props.text;
2323

2424
return (
25-
<RouterLink href={themedLogoProps.url || '/'} passHref>
25+
<RouterLink href={themedLogoProps.url || props.url || '/'} passHref>
2626
<div className={b(null, props.className)}>
2727
{imageData && <Image className={b('icon')} {...imageData} />}
2828
<span className={b('text')}>{textData}</span>

0 commit comments

Comments
 (0)