diff --git a/src/layouts/schedule/duration-text-block/duration-text-block.vue b/src/layouts/schedule/duration-text-block/duration-text-block.vue
index 2ac1c3938..4fd170680 100644
--- a/src/layouts/schedule/duration-text-block/duration-text-block.vue
+++ b/src/layouts/schedule/duration-text-block/duration-text-block.vue
@@ -12,10 +12,7 @@
import textBlock from "@/digital-components/text-block/text-block";
// Constants
-import {
- AppointmentTypeStrings,
- cmsWidgetFieldMappings
-} from "@/constants/schedule-constants";
+import { AppointmentTypeStrings, cmsWidgetFieldMappings } from "@/constants/schedule-constants";
// Helpers
import { getDisplayTextForDurationLength } from "@/helpers/duration-length-helper";
@@ -87,12 +84,15 @@ export default {
return null;
},
durationTextBlockCopy() {
- console.log("durationTextBlockCopy", this.appointmentType, this.estimatedServiceMinutesMaximum, this.estimatedServiceMinutesMinimum);
+ console.log(
+ "durationTextBlockCopy",
+ this.appointmentType,
+ this.estimatedServiceMinutesMaximum,
+ this.estimatedServiceMinutesMinimum
+ );
if (this.appointmentType === AppointmentTypeStrings.MOBILE) {
return this.mobileDurationText;
- } else if (
- this.appointmentType === AppointmentTypeStrings.DROP_OFF
- ) {
+ } else if (this.appointmentType === AppointmentTypeStrings.DROP_OFF) {
return this.getDurationTextBlockCopyForDropoff();
} else {
return this.inshopDurationText;
@@ -114,9 +114,8 @@ export default {
},
components: {
textBlock,
- }
-}
+ },
+};
-
\ No newline at end of file
+
diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue
index d049ae795..8367c288a 100644
--- a/src/layouts/schedule/schedule.vue
+++ b/src/layouts/schedule/schedule.vue
@@ -125,9 +125,7 @@
:appointmentType="appointmentType"
:estimatedServiceMinutesMinimum="estimatedServiceMinutesMinimum"
:estimatedServiceMinutesMaximum="estimatedServiceMinutesMaximum"
- :isOvernightDropoff="isOvernightDropoff"
- />
-
+ :isOvernightDropoff="isOvernightDropoff" />