Skip to content

Commit 6bb7da0

Browse files
authored
fix: remove undefined NavVariant (#86)
Co-authored-by: Andy Ladjadj <[email protected]>
1 parent 997c1d0 commit 6bb7da0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/app/AppLayout/AppLayout.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
Nav,
55
NavList,
66
NavItem,
7-
NavVariants,
87
Page,
98
PageHeader,
109
PageSidebar,
@@ -46,7 +45,7 @@ const AppLayout: React.FunctionComponent<IAppLayout> = ({children}) => {
4645

4746
const Navigation = (
4847
<Nav id="nav-primary-simple" theme="dark">
49-
<NavList id="nav-list-simple" variant={NavVariants.default}>
48+
<NavList id="nav-list-simple">
5049
{routes.map((route, idx) => route.label && (
5150
<NavItem key={`${route.label}-${idx}`} id={`${route.label}-${idx}`}>
5251
<NavLink exact to={route.path} activeClassName="pf-m-current">{route.label}</NavLink>

0 commit comments

Comments
 (0)