diff --git a/packages/twenty-front/src/modules/ui/field/input/components/MultiSelectInput.tsx b/packages/twenty-front/src/modules/ui/field/input/components/MultiSelectInput.tsx index 88c100c81f96..1340f848c158 100644 --- a/packages/twenty-front/src/modules/ui/field/input/components/MultiSelectInput.tsx +++ b/packages/twenty-front/src/modules/ui/field/input/components/MultiSelectInput.tsx @@ -1,4 +1,3 @@ -import styled from '@emotion/styled'; import { useRef, useState } from 'react'; import { useRecoilValue } from 'recoil'; import { Key } from 'ts-key-enum'; @@ -19,12 +18,6 @@ import { MenuItemMultiSelectTag } from 'twenty-ui'; import { isDefined } from '~/utils/isDefined'; import { turnIntoEmptyStringIfWhitespacesOnly } from '~/utils/string/turnIntoEmptyStringIfWhitespacesOnly'; -const StyledRelationPickerContainer = styled.div` - left: -1px; - position: absolute; - top: -1px; -`; - type MultiSelectInputProps = { values: FieldMultiSelectValue; hotkeyScope: string; @@ -115,36 +108,34 @@ export const MultiSelectInput = ({ } }} > - - - - setSearchFilter( - turnIntoEmptyStringIfWhitespacesOnly(event.currentTarget.value), - ) - } - autoFocus - /> - - - {filteredOptionsInDropDown.map((option) => { - return ( - - onOptionSelected(formatNewSelectedOptions(option.value)) - } - isKeySelected={selectedItemId === option.value} - /> - ); - })} - - - + + + setSearchFilter( + turnIntoEmptyStringIfWhitespacesOnly(event.currentTarget.value), + ) + } + autoFocus + /> + + + {filteredOptionsInDropDown.map((option) => { + return ( + + onOptionSelected(formatNewSelectedOptions(option.value)) + } + isKeySelected={selectedItemId === option.value} + /> + ); + })} + + ); };