From 70e9fbc53c0fd8071056882d1ad74868b0a13475 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Thu, 4 Jun 2026 13:06:54 +0530 Subject: [PATCH] refactor: catch failures --- app/javascript/ui/MessageList.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/ui/MessageList.vue b/app/javascript/ui/MessageList.vue index b7998ce03..d240f7627 100644 --- a/app/javascript/ui/MessageList.vue +++ b/app/javascript/ui/MessageList.vue @@ -96,7 +96,8 @@ onMounted(async () => { store.dispatch('fetchAllAttachments', conversationId.value), // agents and teams power the @mention dropdown on private notes store.dispatch('agents/get'), - store.dispatch('teams/get'), + // teams/get rethrows on failure; don't let it break the conversation load + store.dispatch('teams/get').catch(() => {}), ]); await fetchConversationInbox();