Skip to content

Commit

Permalink
Merge pull request #2849 from gulfaraz/fix.class-name
Browse files Browse the repository at this point in the history
fix: do not exclude class name
  • Loading branch information
zbeyens committed Jan 2, 2024
1 parent aa6913c commit 54e7a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/plate-ui/dropdown-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const DropdownMenuContentVariants = withProps(DropdownMenuPrimitive.Content, {

export const DropdownMenuContent = withRef<
typeof DropdownMenuPrimitive.Content
>(({ className, ...props }, ref) => (
>(({ ...props }, ref) => (
<DropdownMenuPrimitive.Portal>
<DropdownMenuContentVariants ref={ref} {...props} />
</DropdownMenuPrimitive.Portal>
Expand Down

0 comments on commit 54e7a4e

Please sign in to comment.