diff --git a/src/PageNav.tsx b/src/PageNav.tsx index fd128839ad..ec6dcf879c 100644 --- a/src/PageNav.tsx +++ b/src/PageNav.tsx @@ -54,17 +54,19 @@ export const PageNav: React.FunctionComponent = () => { //remove "/realm-name" from the start of the path const activeItem = history.location.pathname.substring(realm.length + 1); return ( - - path === activeItem || (path !== "/" && activeItem.startsWith(path)) - } - > - {t(title)} - +
  • + + path === activeItem || (path !== "/" && activeItem.startsWith(path)) + } + > + {t(title)} + +
  • ); };