Closed yvan99 closed 1 year ago
@yvan99 Please provide a repo to reproduce.
@yvan99 Please provide a repo to reproduce.
Thanks, @Tintef , unfortunately, it is a company's private repo, making it challenging to share. was wondering if there is any specific prop needed there because I also had the same issue with a select
component of react-select
and had to add this to work.
can you help me please with this issue?
here's my component
<GooglePlacesAutocomplete apiKey={MAPS_API_KEY} autocompletionRequest={{ componentRestrictions: { country: [countryCode], }, }} selectProps={{ styles: { input: (provided) => ({ ...provided, minWidth: 'max-content' }), }, required: true, placeholder: address ? address : 'Enter Your Delivery Address', onChange: (e) => handlePlaceAddressChange(e), }} />