diff --git a/components/InterestDetailsModal.vue b/components/InterestDetailsModal.vue index a5371be..f66747a 100644 --- a/components/InterestDetailsModal.vue +++ b/components/InterestDetailsModal.vue @@ -1,5 +1,10 @@ @@ -234,21 +231,6 @@ const handleSaveInterest = async (interest: Interest) => { loading.value = false; }; -const handleRequestMoreInfoToSales = (interest: Interest) => { - // The modal component already handles the API call - // You can add additional logic here if needed -}; - -const handleRequestMoreInformation = (interest: Interest) => { - // The modal component already handles the API call - // You can add additional logic here if needed -}; - -const handleEoiSendToSales = (interest: Interest) => { - // The modal component already handles the API call - // You can add additional logic here if needed -}; - const headers = [ { title: "Contact", key: "Full Name", sortable: true, width: "25%" }, { title: "Yacht", key: "Yacht Name", sortable: true }, diff --git a/pages/dashboard/interest-status.vue b/pages/dashboard/interest-status.vue index b7f8c17..73fa76d 100644 --- a/pages/dashboard/interest-status.vue +++ b/pages/dashboard/interest-status.vue @@ -147,9 +147,6 @@ v-model="showModal" :selected-interest="selectedInterest" @save="handleSaveInterest" - @request-more-info-to-sales="handleRequestMoreInfoToSales" - @request-more-information="handleRequestMoreInformation" - @eoi-send-to-sales="handleEoiSendToSales" /> @@ -288,21 +285,6 @@ const handleSaveInterest = (interest: Interest) => { // You can add additional logic here if needed }; -const handleRequestMoreInfoToSales = (interest: Interest) => { - // The modal component already handles the API call - // You can add additional logic here if needed -}; - -const handleRequestMoreInformation = (interest: Interest) => { - // The modal component already handles the API call - // You can add additional logic here if needed -}; - -const handleEoiSendToSales = (interest: Interest) => { - // The modal component already handles the API call - // You can add additional logic here if needed -}; - // Drag and Drop handlers const handleDragStart = (event: DragEvent, interest: Interest) => { draggedInterest.value = interest;