Merge pull request #870 from Safelite/defect/digital/fix-coverage-statement-no-reg-clients
Don't mark the coverage status as verified if we don't have a valid p…
This commit is contained in:
commit
1a3046637c
1 changed files with 1 additions and 1 deletions
|
|
@ -379,7 +379,7 @@ export default {
|
|||
async initializeComponent() {
|
||||
if (this.shouldRegisterClaim) {
|
||||
await this.mainStore.registerClaim();
|
||||
} else if (!this.mainStore.isClaimRegistrationRequired) {
|
||||
} else if (!this.mainStore.isClaimRegistrationRequired && this.mainStore.order.insuranceCoverage.coverageType !== coverageType.NONE) {
|
||||
this.mainStore.updateCoverageStatus(coverageStatuses.VERIFIED);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue