This commit is contained in:
Henry Jameson 2026-08-26 15:09:41 +03:00
commit c64f97ca5e

View file

@ -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)