fleetmap-reports 1.0.417 → 1.0.418

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/src/util/trips.js CHANGED
@@ -64,8 +64,6 @@ function isPartialInsideTimetable (t, userData, route) {
64
64
  const startDate = convertFromLocal(startDateLocal, userData.user.attributes.timezone)
65
65
  const endDate = convertFromLocal(endDateLocal, userData.user.attributes.timezone)
66
66
 
67
- console.log(startDate, endDate)
68
-
69
67
  if (startDate.getTime() > endDate.getTime()) {
70
68
  // Trip starts outside time period and ends inside time period
71
69
  if (tripStart.getTime() < endDate.getTime() &&