Hi,
I’m currently building a new plugin and encountering an issue with the component.
Everything works fine until I pass the isMulti prop to the UserPicker component.
When isMulti is set, it’s not possible to select any user. Does anyone have the same issue as me? Maybe there’s a bug, or I’m doing something wrong. Here’s a sample of my code
<UserPicker
isMulti
label="Users"
name="users"
onChange={(user) => someFn()}
/>