diff --git a/src/stores/lists.ts b/src/stores/lists.ts index aebded0..3e7cb07 100644 --- a/src/stores/lists.ts +++ b/src/stores/lists.ts @@ -564,6 +564,7 @@ export const useListsStore = defineStore('lists', () => { pendingCount, error, itemsForList, + ensureLoaded, loadLists, loadListItems, refresh, diff --git a/src/views/AccountView.vue b/src/views/AccountView.vue index a10494e..220e3cf 100644 --- a/src/views/AccountView.vue +++ b/src/views/AccountView.vue @@ -16,7 +16,7 @@ const versionError = ref('') const isLoadingVersion = ref(false) onMounted(() => { - listsStore.loadLists() + listsStore.ensureLoaded() loadVersion() })