Skip to content

Commit 79203c8

Browse files
jeroen-huizer-conclusiongjulivan
authored andcommitted
fix: linting error
1 parent 8d19e45 commit 79203c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/pluggableWidgets/maps-web/src/components/GoogleMap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function GoogleMap(props: GoogleMapsProps): ReactElement {
101101
{locations
102102
.concat(currentLocation ? [currentLocation] : [])
103103
.filter(m => !!m)
104-
.map((marker, index) => (
104+
.map(marker => (
105105
<GoogleMapsMarker
106106
key={`marker_${marker.id ?? marker.latitude + "_" + marker.longitude}`}
107107
{...marker}

0 commit comments

Comments
 (0)