formatting

This commit is contained in:
Matt Caimi 2023-02-28 11:44:02 -05:00
parent eee5a31c13
commit cdeed7226e
3 changed files with 4 additions and 4 deletions

View file

@ -7,14 +7,14 @@ export async function getMobileFee(serviceZipCode) {
} }
const zipCodeData = await baseMixin.methods.getZipCodeData(serviceZipCode); const zipCodeData = await baseMixin.methods.getZipCodeData(serviceZipCode);
// Get the Mobile Fee Part // Get the Mobile Fee Part
const mobileFeePart = await baseMixin.methods.dispatchStoreAction( const mobileFeePart = await baseMixin.methods.dispatchStoreAction(
storeActions.GET_MOBILE_FEE_PART, storeActions.GET_MOBILE_FEE_PART,
null, null,
false false
); );
// Get the Mobile Fee Part Price // Get the Mobile Fee Part Price
const pricingResults = await baseMixin.methods.dispatchStoreAction( const pricingResults = await baseMixin.methods.dispatchStoreAction(
storeActions.PRICE_ORDER_ITEMS_AND_SAVE_SERVER_DATA, storeActions.PRICE_ORDER_ITEMS_AND_SAVE_SERVER_DATA,

View file

@ -1 +1 @@
test.todo("some test to be written in the future"); test.todo("some test to be written in the future");

View file

@ -104,7 +104,7 @@ export default {
}, },
setData(mobileFee) { setData(mobileFee) {
if (mobileFee) { if (mobileFee) {
this.mobileLocationQuestions.mobileFee = mobileFee this.mobileLocationQuestions.mobileFee = mobileFee;
} }
}, },
getRegistrationAddressFromStore() { getRegistrationAddressFromStore() {