This commit is contained in:
CarlNation 2025-12-17 07:06:17 -05:00
parent f78d1c4192
commit 882076f259
2 changed files with 9 additions and 2 deletions

View file

@ -763,7 +763,14 @@ export default {
false
);
await savePageData(this.pageName, { saveProgressPopupSkipped: true, servicePackageSelected: this.servicePackageSelected }, true);
await savePageData(
this.pageName,
{
saveProgressPopupSkipped: true,
servicePackageSelected: this.servicePackageSelected,
},
true
);
const payment = this.$store.getters.payment;
if (payment.isInsurance) {

View file

@ -88,7 +88,7 @@ export default {
selectedPackageName(newValue) {
debugLog("selectedPackageName:", newValue);
const packageLabel = getPackageLabel(newValue);
debugLog("getPackageLabel:", packageLabel);
this.$emit("servicePackageSelected", `ServicePackage-${packageLabel}`);