From f62f119ad39f223d660783441f250beeadebd607 Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Fri, 13 Dec 2024 15:16:50 -0500 Subject: [PATCH] Code cleanup. --- src/layouts/payment-method/payment-method.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 1efbf00f2..17350a3ca 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -624,7 +624,7 @@ export default { return `${this.ServiceLocationAddress.toLowerCase()}${this.ServiceLocationAddress2 ? ", " + this.ServiceLocationAddress2 : ""}, ${this.ServiceLocationCity.toLowerCase()}, ${this.ServiceLocationState} ${this.ServiceLocationZipCode}`; }, ServiceLocationFullAddress() { - if (this.AppointmentType === "Mobile") { + if (this.AppointmentType === AppointmentTypeStrings.MOBILE) { return { streetAddress: this.$store.getters.order.serviceLocation?.address, address2: this.$store.getters.order.serviceLocation?.address2,