Skip to content

Commit

Permalink
fix logo image in header (#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
ciur authored Nov 17, 2024
1 parent a87be8e commit 228837b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui2/src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {Group, useMantineTheme} from "@mantine/core"
import logoURL from "/logo_transparent_bg.svg"

import {ColorSchemeToggle} from "@/components/ColorSchemeToggle/ColorSchemeToggle"
import classes from "./Header.module.css"
Expand All @@ -21,7 +22,7 @@ function Header() {
<div className={classes.inner}>
<Group>
<SidebarToggle />
<img src="/public/logo_transparent_bg.svg" width={"30px"} />
<img src={logoURL} width={"30px"} />
</Group>
<Group grow className={classes.search}>
<Search />
Expand Down

0 comments on commit 228837b

Please sign in to comment.