Removing unnecessary log

This commit is contained in:
brydon1 2023-07-28 11:24:07 -04:00
parent 3c5eae472f
commit c7fbdf50a1

View file

@ -310,9 +310,7 @@ export default {
if (this.policyLookupSuccessful if (this.policyLookupSuccessful
&& useMainStore().isClaimRegistrationRequired && useMainStore().isClaimRegistrationRequired
&& this.coveredAndServicePriceAboveOrEqualDeductible) { && this.coveredAndServicePriceAboveOrEqualDeductible) {
await useMainStore().registerClaim().catch((e) => { await useMainStore().registerClaim().catch(() => {});
console.log(e);
});
} }
vm.$refs.loadingModal.hideModal(); vm.$refs.loadingModal.hideModal();
}, },