diff --git a/components/Navbar.tsx b/components/Navbar.tsx index 68d3db25..95ec7b36 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -201,11 +201,9 @@ function reducer(state: MobileState, action: MobileAction): MobileState { interface NavItemProps { name: string; route: string; - hasSubsections?: boolean; submenu?: { name: string; route: string; - hasSubsections?: boolean; }[]; mainRouteActive: boolean; onToggle(route: string): void; @@ -276,7 +274,6 @@ function NavItem(props: NavItemProps) { props.onClose()} onToggle={(route) => props.onToggle(route)}