diff --git a/app/javascript/dashboard/routes/dashboard/conversation/contact/ContactInfo.vue b/app/javascript/dashboard/routes/dashboard/conversation/contact/ContactInfo.vue index 2e191ae98..810f4c180 100644 --- a/app/javascript/dashboard/routes/dashboard/conversation/contact/ContactInfo.vue +++ b/app/javascript/dashboard/routes/dashboard/conversation/contact/ContactInfo.vue @@ -205,6 +205,10 @@ export default { ...attrs, }); useAlert(this.$t('CONTACT_FORM.SUCCESS_MESSAGE')); + await this.$store.dispatch( + 'contacts/fetchContactableInbox', + this.contact.id + ); } catch (error) { useAlert(error.message || this.$t('CONTACT_FORM.ERROR_MESSAGE')); }