diff --git a/src/layouts/service-location/appointment-type-question/appointment-type-question.spec.js b/src/layouts/service-location/appointment-type-question/appointment-type-question.spec.js index cdbe474a2..65fba87f2 100644 --- a/src/layouts/service-location/appointment-type-question/appointment-type-question.spec.js +++ b/src/layouts/service-location/appointment-type-question/appointment-type-question.spec.js @@ -21,7 +21,7 @@ const mockCmsContent = { }, { AnswerImageUrl: "", - Name: "DropOff", + Name: "Dropoff", SubText: "", SubWidgetName: "", Text: "Drop-off", @@ -75,7 +75,7 @@ describe("appointment-type-question.vue", () => { }, { AnswerImageUrl: "", - Name: "DropOff", + Name: "Dropoff", SubText: "", SubWidgetName: "", Text: "Drop-off", @@ -108,7 +108,7 @@ describe("appointment-type-question.vue", () => { }, { AnswerImageUrl: "", - Name: "DropOff", + Name: "Dropoff", SubText: "", SubWidgetName: "", Text: "Drop-off", diff --git a/src/layouts/service-location/appointment-type-question/appointment-type-question.vue b/src/layouts/service-location/appointment-type-question/appointment-type-question.vue index 0394b8a84..dbd67ded8 100644 --- a/src/layouts/service-location/appointment-type-question/appointment-type-question.vue +++ b/src/layouts/service-location/appointment-type-question/appointment-type-question.vue @@ -44,7 +44,7 @@ export default { filteredAnswers = this.answersFromCms.filter((answer) => answer.Name == "Mobile"); } else if (this.isServiceableInshop) { filteredAnswers = this.answersFromCms.filter( - (answer) => answer.Name == "Inshop" || answer.Name == "DropOff" + (answer) => answer.Name == "Inshop" || answer.Name == "Dropoff" ); } else { filteredAnswers = [];