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({