From 1cfa868a1a601d12b7bd75c41b36618e350df0bb Mon Sep 17 00:00:00 2001 From: bludnic Date: Wed, 4 Sep 2024 23:01:51 +0100 Subject: [PATCH] fix(chat): infinite loading spinner in Adelina AI and ADAMANT Exchange chats --- src/store/modules/chat/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/chat/index.js b/src/store/modules/chat/index.js index c2d11ae65..0d912cd28 100644 --- a/src/store/modules/chat/index.js +++ b/src/store/modules/chat/index.js @@ -66,7 +66,7 @@ const getters = { const chat = state.chats[senderId] if (chat) { - return chat.messages.sort((left, right) => left.timestamp - right.timestamp) + return [...chat.messages].sort((left, right) => left.timestamp - right.timestamp) } return []