fix: multiselect is broken (#19351)

This commit is contained in:
Anik Dhabal Babu
2025-02-20 13:22:34 +00:00
committed by GitHub
parent b06a94ab57
commit a44e7b2371
@@ -29,7 +29,7 @@ export const Select = <
components,
variant = "default",
size = "md",
grow,
grow = true,
...props
}: SelectProps<Option, IsMulti, Group> & {
innerClassNames?: {
@@ -63,7 +63,7 @@ export const Select = <
control: (base) => ({
...base,
minHeight: size === "sm" ? "28px" : "36px",
height: grow ? "h-auto " : size === "sm" ? "28px" : "36px",
height: grow ? "auto" : size === "sm" ? "28px" : "36px",
}),
}}
classNames={{