From 705573f0a8b71300cc9fb5a1d4c2a5209136f170 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Mon, 12 Jun 2023 22:31:54 +1000 Subject: [PATCH] feat(ui): even more pedantic mantine select theming --- .../web/src/common/components/IAIMantineSelect.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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 (