From 1997653e810723b0fc97ca49fa676c88770a9b47 Mon Sep 17 00:00:00 2001 From: William French Date: Thu, 27 Feb 2025 13:02:22 -0800 Subject: [PATCH] fix: Update index.ts Small change workflow testing yee haw! --- samples/place-autocomplete-map/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/place-autocomplete-map/index.ts b/samples/place-autocomplete-map/index.ts index 00b7839d..26d7d4cf 100644 --- a/samples/place-autocomplete-map/index.ts +++ b/samples/place-autocomplete-map/index.ts @@ -55,7 +55,7 @@ async function initMap(): Promise { // [START maps_place_autocomplete_map_listener] // Add the gmp-placeselect listener, and display the results on the map. //@ts-ignore - placeAutocomplete.addEventListener('gmp-placeselect', async ({ place }) => { // TODO: gmp-placeselect -> gmp-select; place -> placePrediction + placeAutocomplete.addEventListener('gmp-placeselect', async ({ place }) => { // TODO: gmp-placeselect -> gmp-select; place -> placePrediction. await place.fetchFields({ fields: ['displayName', 'formattedAddress', 'location'] }); // If the place has a geometry, then present it on a map.