Skip to content

Commit e92b718

Browse files
authored
Fix logo path (#79)
1 parent f0a0f3a commit e92b718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

styleguide/components/Logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const styles = ({ fontFamily }: Theme) => ({
1818
function LogoRenderer({ classes, children }: PropsWithChildren<JssInjectedProps>) {
1919
return (
2020
<h1 className={classes.logo}>
21-
<img src="/logo.png" alt="Kubevirt UI" className={classes.image} />
21+
<img src="./logo.png" alt="Kubevirt UI" className={classes.image} />
2222
{children}
2323
</h1>
2424
);

0 commit comments

Comments
 (0)