Skip to content

Commit ffad95b

Browse files
author
Eric Olkowski
committed
Removed unused vars
1 parent b832277 commit ffad95b

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/components/Navigation.tsx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
import { useEffect, useState } from 'react'
2-
import {
3-
Nav,
4-
NavList,
5-
PageSidebar,
6-
PageSidebarBody,
7-
} from '@patternfly/react-core'
8-
import { useStore } from '@nanostores/react'
9-
import { isNavOpen } from '../stores/navStore'
2+
import { Nav, NavList, PageSidebarBody } from '@patternfly/react-core'
103
import { NavSection } from './NavSection'
114
import { type TextContentEntry } from './NavEntry'
125

@@ -17,7 +10,6 @@ interface NavigationProps {
1710
export const Navigation: React.FunctionComponent<NavigationProps> = ({
1811
navEntries,
1912
}: NavigationProps) => {
20-
const $isNavOpen = useStore(isNavOpen)
2113
const [activeItem, setActiveItem] = useState('')
2214

2315
useEffect(() => {

0 commit comments

Comments
 (0)