Skip to content

Commit f847111

Browse files
committed
feat: fix MenuSeprator type error
1 parent aeba466 commit f847111

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ui/src/components/dropdown-menu/DropdownMenuSeparator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { DropdownMenuSeparatorProps } from './types';
77
const DropdownMenuSeparator = (props: DropdownMenuSeparatorProps) => {
88
return (
99
<MenuSeparator
10-
component={Separator}
10+
component={Separator as typeof MenuSeparator}
1111
{...props}
1212
/>
1313
);

0 commit comments

Comments
 (0)