diff --git a/src/components/lists_edit/lists_edit.js b/src/components/lists_edit/lists_edit.js index 83bd56de9..bdadd4fca 100644 --- a/src/components/lists_edit/lists_edit.js +++ b/src/components/lists_edit/lists_edit.js @@ -124,12 +124,12 @@ const ListsNew = { useListsStore() .createList({ title: this.titleDraft }) .then((list) => { - return useListsStore() + useListsStore() .setListAccounts({ listId: list.id, accountIds: [...this.addedUserIds], }) - .then(() => list.id) + return list.id }) .then((listId) => { this.$router.push({ name: 'lists-timeline', params: { id: listId } })