diff --git a/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx b/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx index 5b5659080e..1dff0db407 100644 --- a/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx +++ b/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx @@ -1,12 +1,14 @@ +import { forwardRef } from '@chakra-ui/react'; import { Select, SelectProps } from '@mantine/core'; import { memo } from 'react'; type IAISelectProps = SelectProps; -const IAIMantineSelect = (props: IAISelectProps) => { +const IAIMantineSelect = forwardRef((props: IAISelectProps, ref) => { const { searchable = true, ...rest } = props; return (