removing unneeded catch

This commit is contained in:
Max 2022-01-12 12:55:11 -05:00
parent 5c94557a0b
commit 4d0cfd8332

View file

@ -26,9 +26,7 @@ export default ({
beforeRouteEnter(to, from, next) { beforeRouteEnter(to, from, next) {
// Call APIs // Call APIs
const cmsContentPromise = fetchCmsContentForPage(to.query.fmgPage); const cmsContentPromise = fetchCmsContentForPage(to.query.fmgPage);
const damageOptions = baseMixin.methods.dispatchNonBlockingStoreAction(storeActions.GET_DAMAGE_OPTIONS, {carId: store.getters.vehicle.carId}).catch((err) => { const damageOptions = baseMixin.methods.dispatchNonBlockingStoreAction(storeActions.GET_DAMAGE_OPTIONS, {carId: store.getters.vehicle.carId});
console.log(err);
});;
// Settle promises and get results // Settle promises and get results
const promiseResultMap = [ const promiseResultMap = [