SSR-1411 Add missing await

This commit is contained in:
Josh Dassinger 2024-07-10 11:31:18 -05:00
parent d0810969da
commit 8c59ba9c6e

View file

@ -303,7 +303,7 @@ export default {
try {
this.mainStore.updatePolicyData(this.welcomePageModel);
await Promise.allSettled([
this.configureZip().then(async () => this.mainStore.getBillToInfo()),
this.configureZip().then(async () => await this.mainStore.getBillToInfo()),
this.mainStore.getDuplicateReferrals(),
this.mainStore.getCoveragePolicyInfo()
]);