From 2750d98f36f1e7a2ff3eb8ada135aafcba21f45b Mon Sep 17 00:00:00 2001 From: Alex Humphries Date: Wed, 21 Jan 2026 16:11:37 -0500 Subject: [PATCH] Remove debug console.logs --- .../contact-details-drawer.vue | 14 -------------- src/store/index.js | 2 -- 2 files changed, 16 deletions(-) diff --git a/src/layouts/tpa-submit/contact-details-drawer/contact-details-drawer.vue b/src/layouts/tpa-submit/contact-details-drawer/contact-details-drawer.vue index 931b950e..9c94782a 100644 --- a/src/layouts/tpa-submit/contact-details-drawer/contact-details-drawer.vue +++ b/src/layouts/tpa-submit/contact-details-drawer/contact-details-drawer.vue @@ -79,13 +79,6 @@ export default { emailAddress, servicePhone, extension } = useMainStore().contactInfo; - console.log('Initial contact info loaded:', { - firstName, - lastName, - emailAddress, - servicePhone, - extension - }); return { isModalOpened: false, firstName, @@ -157,13 +150,6 @@ export default { emailAddress, servicePhone, extension } = this.mainStore.contactInfo; - console.log('Resetting form values to:', { - firstName, - lastName, - emailAddress, - servicePhone, - extension - }); this.firstName = firstName; this.lastName = lastName; this.emailAddress = emailAddress; diff --git a/src/store/index.js b/src/store/index.js index 3959bd62..dafc9402 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -2574,8 +2574,6 @@ export const useMainStore = defineStore({ updatePhoneNumbers(phoneNumbers) { const contact = this.order.contactInfo; - console.log('Updating phone numbers with:', phoneNumbers); - console.log('Current contact info before update:', contact); contact.homePhone = phoneNumbers.home !== undefined ? phoneNumbers.home : contact.homePhone; contact.alternativePhone = phoneNumbers.alternative !== undefined ? phoneNumbers.alternative : contact.alternativePhone; contact.servicePhone = phoneNumbers.service !== undefined ? phoneNumbers.service : contact.servicePhone;