Skip to content

Commit 69e4fce

Browse files
author
Eric Olkowski
committed
Removed unused vars
1 parent 5cfc349 commit 69e4fce

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/components/Navigation.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
import { useEffect, useState } from 'react'
2-
import {
3-
Nav,
4-
NavList,
5-
PageSidebar,
6-
PageSidebarBody,
7-
} from '@patternfly/react-core'
2+
import { Nav, NavList, PageSidebarBody } from '@patternfly/react-core'
83
import { useStore } from '@nanostores/react'
94
import { isNavOpen } from '../stores/navStore'
105
import { NavSection } from './NavSection'
@@ -17,7 +12,6 @@ interface NavigationProps {
1712
export const Navigation: React.FunctionComponent<NavigationProps> = ({
1813
navEntries,
1914
}: NavigationProps) => {
20-
const $isNavOpen = useStore(isNavOpen)
2115
const [activeItem, setActiveItem] = useState('')
2216

2317
useEffect(() => {

0 commit comments

Comments
 (0)