Skip to content

Commit

Permalink
chore(Multiselect): revert testing default state
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Mar 28, 2024
1 parent 50ab48e commit f20a261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/MultiSelect/MultiSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ const MultiSelect = React.forwardRef(
const { isFluid } = useContext(FormContext);
const { current: multiSelectInstanceId } = useRef(getInstanceId());
const [isFocused, setIsFocused] = useState(false);
const [inputFocused, setInputFocused] = useState(true);
const [inputFocused, setInputFocused] = useState(false);
const [isOpen, setIsOpen] = useState(open || false);
const [prevOpenProp, setPrevOpenProp] = useState(open);
const [topItems, setTopItems] = useState([]);
Expand Down

0 comments on commit f20a261

Please sign in to comment.