From 1e3be0ac24cbb36ca4c5526d64c7b0305c1d4941 Mon Sep 17 00:00:00 2001 From: iamsivin Date: Thu, 2 Apr 2026 23:09:21 +0530 Subject: [PATCH] chore: Review fix --- .../routes/dashboard/conversation/contact/ContactInfo.vue | 4 ++++ 1 file changed, 4 insertions(+) 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')); }