diff --git a/components/OrganizedContent.tsx b/components/OrganizedContent.tsx index 0023c566..c2f26627 100644 --- a/components/OrganizedContent.tsx +++ b/components/OrganizedContent.tsx @@ -97,7 +97,6 @@ export function OrganizedContent({ }`} onClick={() => setMobileNavOpen(!mobileNavOpen)} > - {/* this is copied from hamburger.svg with changed colors */} @@ -110,7 +109,7 @@ interface NavProps { link: Link; pageTitle: string; mobileNavOpen: boolean; - setMobileNavOpen: React.Dispatch>; + setMobileNavOpen: (mobileNavOpen: boolean) => void; } function Nav({ @@ -342,6 +341,7 @@ function useBurger(componentIsVisible: boolean): boolean { return burgerVisible; } +// Inlining this svg because we want to fill in colors using css variables function Burger() { return ( -/// -/// +/// +/// +///