Review fixes

- Remove redundant print statements
- Update endpoint for csv download
This commit is contained in:
Dana Lambert 2021-11-09 15:16:17 +13:00
parent 460fcb5c09
commit d5d029cd2f
3 changed files with 3 additions and 6 deletions

View file

@ -7,7 +7,7 @@ const PlantRepository = {
},
getPlantsCSV(filters) {
return Repository.get('/downloadcsv/', { params: filters })
return Repository.get('/download/csv/', { params: filters })
}
}