Skip to content

Commit

Permalink
fix keys
Browse files Browse the repository at this point in the history
  • Loading branch information
isstuev committed Jun 1, 2023
1 parent d6a6eab commit 25f1bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/snippets/navigation/NavLinkGroupDesktop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const NavLinkGroupDesktop = ({ item, isCollapsed }: Props) => {
{ subItem.map(subSubItem => <NavLink key={ subSubItem.text } item={ subSubItem } isCollapsed={ false }/>) }
</Box>
) :
<NavLink key={ item.text } item={ subItem } isCollapsed={ false }/>,
<NavLink key={ subItem.text } item={ subItem } isCollapsed={ false }/>,
) }
</VStack>
</PopoverBody>
Expand Down

0 comments on commit 25f1bec

Please sign in to comment.