Removing unused call

This commit is contained in:
Michaela Brydon 2025-01-09 12:33:32 -05:00
parent 64e1cfdc09
commit d001299e2a

View file

@ -88,7 +88,6 @@ import {
toDisplayPhoneNumber,
formatAmountInDollars
} from '@/helpers/text-helper.js';
import bailoutMessage from '@/constants/bailoutMessage';
const VERIFYING_COVERAGE = 'Verifying coverage';
@ -107,16 +106,11 @@ export default {
async beforeRouteEnter(to, from, next) {
// Call APIs
const cmsContentPromise = fetchCmsContentForPage(to.query.issPage);
const accountInfoPromise = useMainStore().getCarrierAccountInfo();
// Settle promises and get results
const promiseResultMap = [
{
resultKey: 'cmsContent',
promise: cmsContentPromise
},
{
resultKey: 'accountInfo',
promise: accountInfoPromise
}
];
// use resultMap to populate layout content.