This commit is contained in:
brydon1 2023-09-12 11:32:24 -04:00
parent d1d514adfd
commit 3a70880471

View file

@ -318,7 +318,6 @@ export default {
}
},
nextStepsBody(newValue, oldValue) {
console.log('watching next step');
if (newValue !== oldValue){
setupModalLinks(this);
}
@ -326,7 +325,6 @@ export default {
},
async mounted() {
this.$refs.loadingModal.showModal();
console.log("mounted");
setupModalLinks(this);
const vm = this;
if (this.policyLookupSuccessful
@ -334,7 +332,6 @@ export default {
&& this.coveredAndServicePriceAboveOrEqualDeductible) {
await useMainStore().registerClaim()?.catch(() => {});
}
//setupModalLinks(this);
vm.$refs.loadingModal.hideModal();
},
methods: {
@ -384,9 +381,6 @@ export default {
);
}
},
// openModalAction(modalName) {
// this.$refs[modalName.args].openModal();
// },
processIfStatements,
getHeaderTextFromCms(cmsWidgetName) {
const header = this.getCmsContent(cmsWidgetName, 'HeaderText');