We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcfc7e2 commit b0fa792Copy full SHA for b0fa792
packages/ui-components/src/Containers/Sidebar/SidebarGroup/index.tsx
@@ -25,7 +25,9 @@ const SidebarGroup: FC<SidebarGroupProps> = ({
25
<label className={styles.groupName}>{groupName}</label>
26
<ul className={styles.itemList}>
27
{items.map(({ label, link }) => (
28
- <SidebarItem key={link} label={label} link={link} {...props} />
+ <li key={link}>
29
+ <SidebarItem label={label} link={link} {...props} />
30
+ </li>
31
))}
32
</ul>
33
</section>
0 commit comments