Skip to content

Commit

Permalink
Merge branch 'fix/dropdown-scroll-height'
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Feb 1, 2024
2 parents 3af1690 + 8831a95 commit e63c6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Dropdown: React.FC<DropdownProps> = memo(
children,
trigger = ["click"],
placement,
maxHeight,
maxHeight = 300,
onOpenChange,
}: DropdownProps) => {
const [internalOpen, setInternalOpen] = useState(false);
Expand Down

0 comments on commit e63c6c7

Please sign in to comment.