diff --git a/components/DropdownMenuContent/index.tsx b/components/DropdownMenuContent/index.tsx index 3e472872..37a47f5e 100644 --- a/components/DropdownMenuContent/index.tsx +++ b/components/DropdownMenuContent/index.tsx @@ -14,7 +14,10 @@ export const DropdownMenuGroup = DropdownMenuPrimitive.Group export const DropdownMenuSeparator = DropdownMenuPrimitive.Separator export const DropdownMenuContent = React.forwardRef( - ({ children, ...props }: PropsWithChildren, forwardedRef) => { + function dropdownMenuContent( + { children, ...props }: PropsWithChildren, + forwardedRef + ) { const classes = classNames(props.className, { Menu: true, })