From 1bf1075427012876000436a223a959029ce2034c Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Thu, 27 Mar 2025 16:16:22 +0530 Subject: [PATCH] feat: disable get filtered conversations --- app/javascript/dashboard/components/ChatList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components/ChatList.vue b/app/javascript/dashboard/components/ChatList.vue index dc18ddd66..ab508f5a2 100644 --- a/app/javascript/dashboard/components/ChatList.vue +++ b/app/javascript/dashboard/components/ChatList.vue @@ -106,7 +106,7 @@ const advancedFilterTypes = ref( ); const currentUser = useMapGetter('getCurrentUser'); -const chatLists = useMapGetter('getFilteredConversations'); +const chatLists = useMapGetter('getAllConversations'); const mineChatsList = useMapGetter('getMineChats'); const allChatList = useMapGetter('getAllStatusChats'); const unAssignedChatsList = useMapGetter('getUnAssignedChats');