react-google-places-autocomplete icon indicating copy to clipboard operation
react-google-places-autocomplete copied to clipboard

Disable select input animation

Open buiquangduc opened this issue 3 years ago • 1 comments

Thanks for the awesome libraries!

I have one question, is there any way I can disable the input animation? cadet

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

buiquangduc avatar May 05 '22 04:05 buiquangduc

There's no animation 🤔 Can you set up a codesandbox/repo to reproduce?

Tintef avatar Jun 16 '22 21:06 Tintef

Closing due to lack of response.

Tintef avatar Oct 12 '22 01:10 Tintef