Skip to content

Commit

Permalink
Fix logo path (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacov authored Mar 2, 2022
1 parent f0a0f3a commit e92b718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion styleguide/components/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const styles = ({ fontFamily }: Theme) => ({
function LogoRenderer({ classes, children }: PropsWithChildren<JssInjectedProps>) {
return (
<h1 className={classes.logo}>
<img src="/logo.png" alt="Kubevirt UI" className={classes.image} />
<img src="./logo.png" alt="Kubevirt UI" className={classes.image} />
{children}
</h1>
);
Expand Down

0 comments on commit e92b718

Please sign in to comment.