Mui dropdown open after 3 input characters but dropdown not closing

I want to close this Mui dropdown when i clicked an option . Currently I can’t close
Is there any way to close this
<Autocomplete
id=’select-status’
freeSolo
options={[‘Active’, ‘InActive’]}
onInputChange={(e, newValue) =>
setPlateFormData({ …plateFormData,IsActive: newValue })}
value={plateFormData.IsActive}
renderInput={(params) =>
<sdkMui.TextField {…params}
size=’small’label=”Status” name=’IsActive’ />}

/>

I want to close the dropdown when i click an optio