Skip to content

Commit

Permalink
fix: Removes log lines (#1752)
Browse files Browse the repository at this point in the history
Removes some log lines as they are no longer needed.
  • Loading branch information
willum070 authored May 28, 2024
1 parent 2fa2c93 commit 9652e9f
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions samples/place-autocomplete-data-simple/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,6 @@ async function init() {
for (let suggestion of suggestions) {
const placePrediction = suggestion.placePrediction;

// Log everything for the place prediction. TODO: Delete this section once we have seen the results.
console.log('placeId: ' + placePrediction.placeId); // You've now got the place ID!
console.log(' text: ' + placePrediction.text.toString());
console.log(' mainText: ' + placePrediction.mainText.toString());
console.log(
' secondaryText: ' + placePrediction.secondaryText.toString());
console.log(' types: ' + placePrediction.types);
console.log(' distanceMeters: ' + placePrediction.distanceMeters);

// Create a new list element.
const listItem = document.createElement('li');
const resultsElement = document.getElementById("results") as HTMLElement;
Expand Down

0 comments on commit 9652e9f

Please sign in to comment.