diff --git a/src/components/Base/Input/ReceiverAutocomplete.component.tsx b/src/components/Base/Input/ReceiverAutocomplete.component.tsx index 8cff62c2..a5a5d0e1 100644 --- a/src/components/Base/Input/ReceiverAutocomplete.component.tsx +++ b/src/components/Base/Input/ReceiverAutocomplete.component.tsx @@ -66,8 +66,7 @@ export const ReceiverAutocomplete: React.FC = ({ value={value} onChange={onChange} filterOptions={applyReceiverOptionsFilter} - // FIXME: - isOptionEqualToValue={(option, value) => option.value === value?.value || typeof value.value === 'string'} + isOptionEqualToValue={(option, value) => option.value == value.value && option.label == value.label} defaultValue={defaultValue} loadingText="Loading..." loading={loading}