Prettier making some weird edits...

This commit is contained in:
Matt Sykes 2026-03-10 09:17:03 -04:00
parent 5ca89734a9
commit 801e759f6b
2 changed files with 2 additions and 3 deletions

View file

@ -173,7 +173,7 @@ export function hasInsuranceInfo(order, logQueue = null) {
}
/**
* Checks whether the scheduling information is valid for the order.
* Checks whether the scheduling information is valid for the order.
* Should be used on pages after scheduling info collection is complete.
* Returns true if the required info is present for the chosen appointment type.
* For MOBILE: date, startTime, endTime, jobMaxMinutes, and jobMinMinutes must be present on schedule.

View file

@ -175,8 +175,7 @@ describe("payment-adyen.vue", () => {
});
test("returns true for mobile appointment type when address fields are present", () => {
store.getters.order.serviceLocation.appointmentType =
AppointmentTypeStrings.MOBILE;
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.MOBILE;
store.getters.order.serviceLocation.address = "123 Mobile St";
store.getters.order.serviceLocation.city = "Columbus";
store.getters.order.serviceLocation.state = "OH";