diff --git a/src/digital-components/modal/modal.vue b/src/digital-components/modal/modal.vue index 3bd0721f2..a0637f5de 100644 --- a/src/digital-components/modal/modal.vue +++ b/src/digital-components/modal/modal.vue @@ -44,6 +44,7 @@ import modalButtonMain from "@/digital-components/modal/ux-components/modal-button-main/modal-button-main"; import { Modal } from "bootstrap"; import { useForm } from "vee-validate"; +import { computed, provide, inject, ref } from "vue"; export default { name: "modal", @@ -59,7 +60,6 @@ export default { }, setup() { const modalId = `modal-${crypto.randomUUID()}`; - const { meta, validate, resetForm } = useForm(); return { diff --git a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue index acc0c9787..84f3d4e9c 100644 --- a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue +++ b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue @@ -1,7 +1,7 @@