fleetmap-reports 2.0.5 → 2.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetmap-reports",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -41,7 +41,7 @@ async function createZoneReport (from, to, userData, traccar) {
41
41
  : process.env.SERVER_HOST
42
42
 
43
43
  if (isClientSide()) {
44
- const url = `https://${serverHost}/reports/zone-report`
44
+ const url = `https://${serverHost}/reports/zone-report/`
45
45
  return axios.post(url, { from, to, userData }, { withCredentials: true })
46
46
  .then(d => d.data)
47
47
  }