Skip to content

Commit

Permalink
fix: Use correct Mega menu list category class
Browse files Browse the repository at this point in the history
  • Loading branch information
alimpens committed Feb 13, 2024
1 parent c9984e3 commit f9e21af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/MegaMenu/MegaMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const MegaMenuListCategory = forwardRef(
{ children, className, ...restProps }: PropsWithChildren<HTMLAttributes<HTMLDivElement>>,
ref: ForwardedRef<HTMLDivElement>,
) => (
<div {...restProps} ref={ref} className={clsx('amsterdam-mega-menu__list-wrapper', className)}>
<div {...restProps} ref={ref} className={clsx('amsterdam-mega-menu__list-category', className)}>
{children}
</div>
),
Expand Down

0 comments on commit f9e21af

Please sign in to comment.