We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c46996 commit 2f229bdCopy full SHA for 2f229bd
datahub-web-react/src/alchemy-components/components/AutoComplete/AutoComplete.tsx
@@ -17,7 +17,7 @@ export default function AutoComplete({
17
...props
18
}: React.PropsWithChildren<AutoCompleteProps>) {
19
const [internalValue, setInternalValue] = useState<string>(value || '');
20
- const [internalOpen, setInternalOpen] = useState<boolean>(true);
+ const [internalOpen, setInternalOpen] = useState<boolean>(false);
21
22
useEffect(() => {
23
onDropdownVisibleChange?.(internalOpen);
0 commit comments