No need for global catchall when fetching reports

This commit is contained in:
Lucas Verney 2018-10-16 15:15:11 +02:00
parent 6f906ec23a
commit 06c02f6ece
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ export default {
store.dispatch('setLastReportFetchingLocation', { store.dispatch('setLastReportFetchingLocation', {
locationLatLng: center, locationLatLng: center,
}); });
store.dispatch('fetchReports').catch(() => {}); store.dispatch('fetchReports');
} }
this.$store.dispatch('setCurrentMapCenter', { center }); this.$store.dispatch('setCurrentMapCenter', { center });