Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
fix bug that caused app to crash when dragging a marker (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
pandananta authored Sep 6, 2018
1 parent fb32a7d commit 54bb101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expo_project/screens/SurveyScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class SurveyScreen extends React.Component {
.collection("survey")
.doc(surveyId)
.collection("dataPoints")
.doc(marker.firestoreId)
.doc(marker.id)
.update({ location: marker.location });
}
}
Expand Down

0 comments on commit 54bb101

Please sign in to comment.