Describe the bug
Can't use two list with same value, getting error of unique key.
Expected behaviour
Key should not depend on the value prop.
There should be option for custom value, label like as react select.
<Select
isDisabled={!stateId}
options={citiesArray}
classNamePrefix="select"
getOptionValue={({ id }) => id}
getOptionLabel={({ name }) => name}
theme={selectThemeColors}
className={'react-select'}
{...field}
/>
Describe the bug
Can't use two list with same value, getting error of unique key.
Expected behaviour
Key should not depend on the value prop.
There should be option for custom value, label like as react select.