I am using Multi-User picker as following
<Field name="exclude" label="Exclude users" defaultValue="">
{({ fieldProps }) => (
<UserPicker
isMulti
width="100%"
placeholder="Excluded users"
addMoreMessage="add more"
options={options}
{...fieldProps}
/>
)}
</Field>
It is crashing on user remove with the following message:
It seems you are interpolating a keyframe declaration (bYGNob) into an untagged string. This was supported in styled-components v3, but is not longer supported in v4 as keyframes are now injected on-demand. Please wrap your string in the css\
` helper which ensures the styles are injected correctly. See styled-components: API Reference
Can someone show me how to use it properly?
can’t post the error screen due to the image post limit for new users.