From 456f25e94e5c76548118965972179a11798af1fc Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 31 Aug 2026 17:41:35 +0300 Subject: [PATCH] lint --- src/stores/lists.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/stores/lists.js b/src/stores/lists.js index c002ad3f4..fcc3fefde 100644 --- a/src/stores/lists.js +++ b/src/stores/lists.js @@ -49,7 +49,9 @@ export const useListsStore = defineStore('lists', { }, setLists(value) { this.allLists = value - this.allListsObject = Object.fromEntries(value.map((list) => [list.id, list])) + this.allListsObject = Object.fromEntries( + value.map((list) => [list.id, list]), + ) }, async createList({ title }) { return await createList({