diff --git a/src/stores/chats.js b/src/stores/chats.js index f795f9143..86ea310ce 100644 --- a/src/stores/chats.js +++ b/src/stores/chats.js @@ -66,7 +66,7 @@ export const useChatsStore = defineStore('chats', { }) // We do unshift in update so we reverse the chat list here - result.data.forEach(chat => this.updateChat(chat)) + result.data.forEach((chat) => this.updateChat(chat)) }, readChat(id) { const chat = this.data.get(id)