diff --git a/src/components/input/SelectInput.tsx b/src/components/input/SelectInput.tsx index 082f9ae5..b491077f 100644 --- a/src/components/input/SelectInput.tsx +++ b/src/components/input/SelectInput.tsx @@ -97,7 +97,6 @@ const SelectInput = (props: SelectInputProps) => { return { ...base, IndicatorSeparator: () => null }; }, [isAnimated]); - const internalInputChangeHandler = (val: string, meta: InputActionMeta) => { const internalInputChangeHandler = (val: string, meta: InputActionMeta) => { if (meta.action === 'input-change') setInternalInputValue(val); if (meta.action === 'menu-close') setInternalInputValue(''); @@ -140,8 +139,6 @@ const SelectInput = (props: SelectInputProps) => { > {label} {required && ( - - * * @@ -150,7 +147,6 @@ const SelectInput = (props: SelectInputProps) => { )} > - instanceId='select' instanceId='select' value={value ?? (isMulti ? [] : null)} onChange={handleChange} @@ -223,11 +219,9 @@ const SelectInput = (props: SelectInputProps) => { }} /> - {isError &&

{errorMessage}

} {isError &&

{errorMessage}

} {!isError && bottomLabel && (

{bottomLabel}

-

{bottomLabel}

)} );