react-google-places-autocomplete
react-google-places-autocomplete copied to clipboard
Disable select input animation
Thanks for the awesome libraries!
I have one question, is there any way I can disable the input animation?

Below is my code:
<GooglePlacesAutocomplete
apiKey="..."
autocompletionRequest={{
bounds: _calculateLatLongBounds(),
componentRestrictions: {
country: ["hk"],
}
}}
debounce={3000}
selectProps={{
onChange: async (value) => {
const address = value.label
const results = await geocodeByAddress(address)
const { lat, lng } = await getLatLng(results[0])
setFormData({ ...formData, latitude: lat, longitude: lng })
},
isClearable: true
}}
/>
Thanks for your help
There's no animation 🤔 Can you set up a codesandbox/repo to reproduce?
Closing due to lack of response.