Remove console.log.

This commit is contained in:
Bryan Mauger 2024-03-25 15:51:43 -04:00
parent 187bbd228b
commit fb45136182
2 changed files with 0 additions and 4 deletions

View file

@ -57,7 +57,6 @@ export default {
} }
}, },
set: function (newValue) { set: function (newValue) {
console.log("SET ", newValue);
this.$emit("update:modelValue", newValue); this.$emit("update:modelValue", newValue);
}, },
}, },
@ -93,7 +92,6 @@ export default {
matches.push(company.accountName); matches.push(company.accountName);
} }
}); });
console.log("matches: ", matches);
response(matches); response(matches);
}, },
selectParentAccountNumber(parentAccountName) { selectParentAccountNumber(parentAccountName) {

View file

@ -70,8 +70,6 @@ export default {
const resultMap = await settleAllPromises(promiseResultMap); const resultMap = await settleAllPromises(promiseResultMap);
console.log("originalList: ", resultMap.insuranceCompanyList);
// Call the "next" function to complete the transition to this page. // Call the "next" function to complete the transition to this page.
next((vm) => { next((vm) => {
vm.setCmsContent(resultMap.cmsContent); vm.setCmsContent(resultMap.cmsContent);