diff --git a/unlock-app/src/components/content/event/Form.tsx b/unlock-app/src/components/content/event/Form.tsx index 672a2860363..0c248ff0b1e 100644 --- a/unlock-app/src/components/content/event/Form.tsx +++ b/unlock-app/src/components/content/event/Form.tsx @@ -53,7 +53,10 @@ export const GoogleMapsAutoComplete = ({ types: [], }, apiKey: config.googleMapsApiKey, - onPlaceSelected: (place) => onChange(place.formatted_address), + onPlaceSelected: (place, inputRef) => { + // @ts-expect-error Property 'value' does not exist on type 'RefObject'.ts(2339) + return onChange(`${inputRef.value}, ${place.formatted_address}`) + }, }) return (