minor change

This commit is contained in:
Michaela Brydon 2024-01-24 14:02:40 -05:00
parent 6f1baada01
commit 53eab888d5

View file

@ -117,12 +117,6 @@ export default {
this.$emit('update-contact-details');
this.closeModal();
},
openModal() {
this.modal.openModal();
},
closeModal() {
this.modal.closeModal();
},
resetFormValues() {
const { firstName,
lastName,
@ -132,6 +126,12 @@ export default {
this.lastName = lastName;
this.emailAddress = emailAddress;
this.phoneNumber = phoneNumber;
},
openModal() {
this.modal.openModal();
},
closeModal() {
this.modal.closeModal();
}
}
};