Skip to content

Commit d6fac09

Browse files
authored
Fix for #378 map view popups only showing one meeting (#445)
1 parent 88b96cb commit d6fac09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

public/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/Map.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export default function Map({
9999
const coords = meeting.latitude + ',' + meeting.longitude;
100100

101101
//create a new pin
102-
if (!locations.coords) {
102+
if (!locations[coords]) {
103103
locations[coords] = {
104104
directions_url: formatDirectionsUrl(meeting),
105105
formatted_address: meeting.formatted_address,

0 commit comments

Comments
 (0)