When passing multiple fields to the Details Query the component fails to the a response.
GooglePlacesDetailsQuery={{ fields: 'formatted_address, geometry' }}
Any clue on how to request multiple fields?
just remove the space between the comma and geometry.
it worked for my case
GooglePlacesDetailsQuery={{ fields: 'formatted_address,geometry' }}
Most helpful comment
just remove the space between the comma and geometry.
it worked for my case
GooglePlacesDetailsQuery={{ fields: 'formatted_address,geometry' }}