diff --git a/packages/ui/components/form/select/Select.tsx b/packages/ui/components/form/select/Select.tsx index cf3397aa79..ebc243c197 100644 --- a/packages/ui/components/form/select/Select.tsx +++ b/packages/ui/components/form/select/Select.tsx @@ -7,6 +7,7 @@ import ReactSelect, { SingleValue, MultiValue, SelectComponentsConfig, + MenuPlacement, } from "react-select"; import classNames from "@calcom/lib/classNames"; @@ -37,10 +38,13 @@ export const getReactSelectProps = < >({ className, components, + menuPlacement = "auto", }: { className?: string; components: SelectComponentsConfig; + menuPlacement?: MenuPlacement; }) => ({ + menuPlacement, className: classNames("block h-[36px] w-full min-w-0 flex-1 rounded-md", className), classNamePrefix: "cal-react-select", components: { @@ -69,7 +73,10 @@ export const Select = < ...props }: SelectProps) => { const reactSelectProps = React.useMemo(() => { - return getReactSelectProps({ className, components: components || {} }); + return getReactSelectProps({ + className, + components: components || {}, + }); }, [className, components]); return (