Skip to content

Commit

Permalink
refactor: don't be lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Mar 19, 2024
1 parent 9838d54 commit 0923efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/react/Menu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ const MegaMenuItem = ({ children, title, containerCss }) => (
</div>
);
const ListItem = React.forwardRef(({ className, children, title, ...props }, forwardedRef) => (
<li className={'group ' + className}>
<li className={classNames('group', className)}>
<NavigationMenu.Link asChild>
<a
className={classNames(
Expand Down

0 comments on commit 0923efe

Please sign in to comment.