From 21addd48ff29f4818c72ea096eebb49f68e01ec5 Mon Sep 17 00:00:00 2001 From: William French Date: Wed, 26 Feb 2025 11:11:44 -0800 Subject: [PATCH] fix: Update index.ts Small change to test workflows. Got so lazy I don't even want to type the word "inconsequential" anymore. --- 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.