Skip to content

Commit 14adc3c

Browse files
authored
fix: Update index.ts (#179)
Makes a small change to test the release workflow.
1 parent 97b7c1c commit 14adc3c

File tree

1 file changed

+1
-1
lines changed
  • samples/place-autocomplete-element

1 file changed

+1
-1
lines changed

samples/place-autocomplete-element/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async function initMap(): Promise<void> {
3939
// [START maps_place_autocomplete_element_listener]
4040
// Add the gmp-placeselect listener, and display the results.
4141
//@ts-ignore
42-
placeAutocomplete.addEventListener('gmp-placeselect', async ({ place }) => { // TODO: gmp-placeselect -> gmp-select; place -> placePrediction.
42+
placeAutocomplete.addEventListener('gmp-placeselect', async ({ place }) => { // TODO: gmp-placeselect -> gmp-select; place -> placePrediction
4343
await place.fetchFields({ fields: ['displayName', 'formattedAddress', 'location'] });
4444

4545
selectedPlaceTitle.textContent = 'Selected Place:';

0 commit comments

Comments
 (0)