diff --git a/src/components/NavigationDropdown.tsx b/src/components/NavigationDropdown.tsx index c0a691175..7eb9fed31 100644 --- a/src/components/NavigationDropdown.tsx +++ b/src/components/NavigationDropdown.tsx @@ -71,34 +71,33 @@ export function NavigationDropdown() { > -
- {links.map((link) => ( - - - - - - - {link.label} + {isOpen && ( +
+ {links.map((link) => ( + + + + + + + {link.label} + + {link.description} - {link.description} - - - ))} -
+ + ))} +
+ )} ); }