fix: general screen fixes

This commit is contained in:
Taranto 2020-08-08 08:31:23 +01:00 committed by Josh Harvey
parent ea53d782ad
commit b07c0e180a
10 changed files with 32 additions and 226 deletions

View file

@ -29,7 +29,7 @@ const AutocompleteFormik = ({ options, ...props }) => {
error={error}
open={open}
options={innerOptions}
onOpen={() => setOpen(value.length !== props.limit)}
onOpen={() => setOpen(value?.length !== props?.limit)}
onClose={() => setOpen(false)}
{...props}
/>