Skip to content

Commit

Permalink
Fix navbar in home page (#2617)
Browse files Browse the repository at this point in the history
  • Loading branch information
farzaank committed May 7, 2024
1 parent 74910e6 commit 4797a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helm-frontend/src/layouts/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import MinimalNavBar from "@/components/MinimalNavBar";
export default function Main() {
return (
<>
{window.PROJECT_ID === "global" ? <MinimalNavBar /> : <NavBar />}
{window.PROJECT_ID === "home" ? <MinimalNavBar /> : <NavBar />}
<main className="p-8 pt-0">
<div className="mx-auto max-w-[1500]px">
<Outlet />
Expand Down

0 comments on commit 4797a45

Please sign in to comment.