Skip to content

Commit

Permalink
Improved: removed the unnecessary changes(#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Sourabh committed Nov 7, 2024
1 parent 80a4a62 commit ba8bb4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/FacilityGeoPointModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ export default defineComponent({
if(!hasError(resp) && resp.data.response.docs.length > 0) {
const result = resp.data.response.docs[0]
this.geoPoint.latitude = result.latitude;
this.geoPoint.longitude = result.longitude;
this.geoPoint.latitude = result.latitude
this.geoPoint.longitude = result.longitude
} else {
throw resp.data
}
Expand Down

0 comments on commit ba8bb4b

Please sign in to comment.