Skip to content

Commit e07127b

Browse files
igorrm19ovflowd
andauthored
Update packages/ui-components/src/Containers/NavBar/index.tsx
Co-authored-by: Claudio Wunder <[email protected]> Signed-off-by: Igor Rodrigues Machado <[email protected]>
1 parent ed7a98c commit e07127b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/ui-components/src/Containers/NavBar

packages/ui-components/src/Containers/NavBar/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const NavBar: FC<PropsWithChildren<NavbarProps>> = ({
7575
/>
7676

7777
<div className={classNames(styles.main, `hidden peer-checked:flex`)}>
78-
{!!navItems?.length && (
78+
{navItems?.length > 0 && (
7979
<div className={styles.navItems}>
8080
{navItems.map(({ text, link, target }) => (
8181
<NavItem

0 commit comments

Comments
 (0)