We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9df79 commit 6b30260Copy full SHA for 6b30260
packages/pluggableWidgets/maps-web/src/components/GoogleMap.tsx
@@ -101,7 +101,7 @@ function GoogleMap(props: GoogleMapsProps): ReactElement {
101
{locations
102
.concat(currentLocation ? [currentLocation] : [])
103
.filter(m => !!m)
104
- .map((marker, index) => (
+ .map(marker => (
105
<GoogleMapsMarker
106
key={`marker_${marker.id ?? marker.latitude + "_" + marker.longitude}`}
107
{...marker}
0 commit comments