prettier
This commit is contained in:
CarlNation 2023-10-25 17:00:29 -04:00
parent ec6eabb24a
commit 7840e90dc5
2 changed files with 11 additions and 12 deletions

View file

@ -290,13 +290,12 @@ export default {
if (this.paymentMethod == paymentMethods.LATER) { if (this.paymentMethod == paymentMethods.LATER) {
this.dispatchStoreAction(this.storeActions.SAVE_WORK_ORDER_FLAG, true, false); this.dispatchStoreAction(this.storeActions.SAVE_WORK_ORDER_FLAG, true, false);
await submitWorkOrder({ pageNameToLog: "payment-method" }); await submitWorkOrder({ pageNameToLog: "payment-method" });
this.$router.navigateWithoutSaving( this.$router.navigateWithoutSaving(
this.navigationScenarios.CLICKED_FORWARD, this.navigationScenarios.CLICKED_FORWARD,
this.$route this.$route
); );
} } else {
else {
this.setupPia(); this.setupPia();
} }
}, },

View file

@ -76,11 +76,11 @@ export default {
store.getters.order.referralSequenceNumber store.getters.order.referralSequenceNumber
); );
this.$router.navigateWithoutSaving( this.$router.navigateWithoutSaving(
this.navigationScenarios.PIA_ERROR, this.navigationScenarios.PIA_ERROR,
this.$route, this.$route,
{}, {},
{ [routerParams.DISPLAY_PIA_ALERT]: true } { [routerParams.DISPLAY_PIA_ALERT]: true }
); );
} else { } else {
const expMonth = getQuerystringParameter(queryStrings.CARD_EXPIRATION_MONTH); const expMonth = getQuerystringParameter(queryStrings.CARD_EXPIRATION_MONTH);
const expYear = getQuerystringParameter(queryStrings.CARD_EXPIRATION_YEAR); const expYear = getQuerystringParameter(queryStrings.CARD_EXPIRATION_YEAR);