Skip to content

Commit 4f2a8f3

Browse files
authored
Fix unused variable, removed tsignore
1 parent 5627aaa commit 4f2a8f3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

samples/place-autocomplete-map/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ let infoWindow: google.maps.InfoWindow;
1515
let center = { lat: 40.749933, lng: -73.98633 }; // New York City
1616
async function initMap(): Promise<void> {
1717
// Request needed libraries.
18-
//@ts-ignore
19-
const [{ Map }, { AdvancedMarkerElement }] = await Promise.all([
18+
const [] = await Promise.all([
2019
google.maps.importLibrary('marker'),
2120
google.maps.importLibrary('places'),
2221
]);

0 commit comments

Comments
 (0)