SSR-1411 Add missing await
This commit is contained in:
parent
d0810969da
commit
8c59ba9c6e
1 changed files with 1 additions and 1 deletions
|
|
@ -303,7 +303,7 @@ export default {
|
||||||
try {
|
try {
|
||||||
this.mainStore.updatePolicyData(this.welcomePageModel);
|
this.mainStore.updatePolicyData(this.welcomePageModel);
|
||||||
await Promise.allSettled([
|
await Promise.allSettled([
|
||||||
this.configureZip().then(async () => this.mainStore.getBillToInfo()),
|
this.configureZip().then(async () => await this.mainStore.getBillToInfo()),
|
||||||
this.mainStore.getDuplicateReferrals(),
|
this.mainStore.getDuplicateReferrals(),
|
||||||
this.mainStore.getCoveragePolicyInfo()
|
this.mainStore.getCoveragePolicyInfo()
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue