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
&& useMainStore().isClaimRegistrationRequired
&& this.coveredAndServicePriceAboveOrEqualDeductible) {
await useMainStore().registerClaim().catch((e) => {
console.log(e);
});
await useMainStore().registerClaim().catch(() => {});
}
vm.$refs.loadingModal.hideModal();
},