diff --git a/frontend/app/layout/Layout.tsx b/frontend/app/layout/Layout.tsx index a436b3d05..4db4fb95b 100644 --- a/frontend/app/layout/Layout.tsx +++ b/frontend/app/layout/Layout.tsx @@ -47,9 +47,9 @@ function Layout(props: Props) { {index > 0 && } - {category.title}} - > + {category.items.filter((item: any) => !item.hidden).map((item: any) => { const isActive = isMenuItemActive(item.key); @@ -215,7 +210,7 @@ function SideMenu(props: Props) { ); })} - + )}