Here is my code, which used to work until one of the latest updated.
<Select
id="select-components"
options={this.props.componentsOptions}
value={this.props.components}
placeholder={placeholder}
isMulti={true}
onChange={(value) => this.onChange(value as Option[])}
/>
Now I’m getting the following Typescript error for isMulti={true}
: Type 'true' is not assignable to type 'false'
.
What’s the right way to have a multi select now?