diff --git a/frontend/src/components/v2/Select/Select.tsx b/frontend/src/components/v2/Select/Select.tsx index e76e902605..0a691e9eb2 100644 --- a/frontend/src/components/v2/Select/Select.tsx +++ b/frontend/src/components/v2/Select/Select.tsx @@ -10,20 +10,24 @@ type Props = { children: ReactNode; placeholder?: string; className?: string; + dropdownContainerClassName?: string; isLoading?: boolean; }; export type SelectProps = SelectPrimitive.SelectProps & Props; export const Select = forwardRef( - ({ children, placeholder, className, isLoading, ...props }, ref): JSX.Element => { + ( + { children, placeholder, className, isLoading, dropdownContainerClassName, ...props }, + ref + ): JSX.Element => { return ( @@ -36,10 +40,10 @@ export const Select = forwardRef(