Remove console logs
This commit is contained in:
parent
f9aa447f6b
commit
b0bdc70dd7
1 changed files with 0 additions and 4 deletions
|
|
@ -289,19 +289,15 @@ export const useMainStore = defineStore({
|
||||||
const { policyLookupSuccessful } = policy;
|
const { policyLookupSuccessful } = policy;
|
||||||
const registerClaimSuccessful = !!payment.insuranceCoverage.isVerified;
|
const registerClaimSuccessful = !!payment.insuranceCoverage.isVerified;
|
||||||
if (!policyLookupSuccessful) {
|
if (!policyLookupSuccessful) {
|
||||||
console.log('policy fail');
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (s.isNoComp && !s.issConfig.enableNoCompQuote) {
|
if (s.isNoComp && !s.issConfig.enableNoCompQuote) {
|
||||||
console.log('no comp not enabled');
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (!s.isNoComp && currentDeductible == null) {
|
if (!s.isNoComp && currentDeductible == null) {
|
||||||
console.log('null deductible');
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (s.isClaimRegistrationRequired && !registerClaimSuccessful) {
|
if (s.isClaimRegistrationRequired && !registerClaimSuccessful) {
|
||||||
console.log('claim reg required but failed');
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue