Merge pull request #920 from Safelite/bug/brydon/INSR-2048
Removing unused call
This commit is contained in:
commit
a5f49e296b
1 changed files with 0 additions and 6 deletions
|
|
@ -88,7 +88,6 @@ import {
|
||||||
toDisplayPhoneNumber,
|
toDisplayPhoneNumber,
|
||||||
formatAmountInDollars
|
formatAmountInDollars
|
||||||
} from '@/helpers/text-helper.js';
|
} from '@/helpers/text-helper.js';
|
||||||
import bailoutMessage from '@/constants/bailoutMessage';
|
|
||||||
|
|
||||||
const VERIFYING_COVERAGE = 'Verifying coverage';
|
const VERIFYING_COVERAGE = 'Verifying coverage';
|
||||||
|
|
||||||
|
|
@ -107,16 +106,11 @@ export default {
|
||||||
async beforeRouteEnter(to, from, next) {
|
async beforeRouteEnter(to, from, next) {
|
||||||
// Call APIs
|
// Call APIs
|
||||||
const cmsContentPromise = fetchCmsContentForPage(to.query.issPage);
|
const cmsContentPromise = fetchCmsContentForPage(to.query.issPage);
|
||||||
const accountInfoPromise = useMainStore().getCarrierAccountInfo();
|
|
||||||
// Settle promises and get results
|
// Settle promises and get results
|
||||||
const promiseResultMap = [
|
const promiseResultMap = [
|
||||||
{
|
{
|
||||||
resultKey: 'cmsContent',
|
resultKey: 'cmsContent',
|
||||||
promise: cmsContentPromise
|
promise: cmsContentPromise
|
||||||
},
|
|
||||||
{
|
|
||||||
resultKey: 'accountInfo',
|
|
||||||
promise: accountInfoPromise
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
// use resultMap to populate layout content.
|
// use resultMap to populate layout content.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue