From c64f97ca5ed1d2a3e20dd736fffed599d95e0225 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 26 Aug 2026 15:09:41 +0300 Subject: [PATCH] lint --- src/stores/chats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)