diff --git a/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx b/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx index 115914213b..2b880d5765 100644 --- a/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx +++ b/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx @@ -1,4 +1,4 @@ -import { Tooltip, forwardRef } from '@chakra-ui/react'; +import { Tooltip } from '@chakra-ui/react'; import { Select, SelectProps } from '@mantine/core'; import { memo } from 'react'; @@ -6,12 +6,11 @@ type IAISelectProps = SelectProps & { tooltip?: string; }; -const IAIMantineSelect = forwardRef((props: IAISelectProps, ref) => { +const IAIMantineSelect = (props: IAISelectProps) => { const { searchable = true, tooltip, ...rest } = props; return (