Skip to content

Commit

Permalink
Fix the logo on GH pages
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardo-forina committed Nov 15, 2024
1 parent 4129062 commit fabb7d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/test-app/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
import BarsIcon from "@patternfly/react-icons/dist/esm/icons/bars-icon";
import { ReactNode, useState } from "react";
import { MoonIcon, SunIcon } from "@patternfly/react-icons";
import viteImg from "/vite.svg";

export function Layout({ children }: { children: ReactNode }) {
const [isSidebarOpen, setIsSidebarOpen] = useState(true);
Expand Down Expand Up @@ -73,7 +74,7 @@ export function Layout({ children }: { children: ReactNode }) {
</PageToggleButton>
</MastheadToggle>
<MastheadBrand href="https://patternfly.org" target="_blank">
<img src={"/vite.svg"} />
<img src={viteImg} />
</MastheadBrand>
<MastheadContent>{headerToolbar}</MastheadContent>
</MastheadMain>
Expand Down

0 comments on commit fabb7d4

Please sign in to comment.