From b693fc7bf07acc184f1c712cc867f0a94e185fe7 Mon Sep 17 00:00:00 2001 From: Abhinav Raut Date: Sun, 3 Nov 2024 03:30:40 +0530 Subject: [PATCH] fix: remove toast from conversation list errors. --- .../conversation/list/ConversationList.vue | 41 ++++++++----------- frontend/src/stores/conversation.js | 19 +++++---- frontend/src/utils/http.js | 8 ++-- internal/conversation/conversation.go | 7 ++-- 4 files changed, 35 insertions(+), 40 deletions(-) diff --git a/frontend/src/components/conversation/list/ConversationList.vue b/frontend/src/components/conversation/list/ConversationList.vue index b5152f35..ff88a1bc 100644 --- a/frontend/src/components/conversation/list/ConversationList.vue +++ b/frontend/src/components/conversation/list/ConversationList.vue @@ -6,15 +6,20 @@ - + +
+ + -
+
+ v-for="conversation in conversationStore.sortedConversations" :key="conversation.uuid" + :contactFullName="conversationStore.getContactFullName(conversation.uuid)" />
@@ -23,14 +28,15 @@
-
-
+
+
-
All conversations loaded!
+
+ All conversations loaded! +
@@ -40,9 +46,8 @@