From c0dc4a2fe0bba76873f8281002ea28f0c748a3c3 Mon Sep 17 00:00:00 2001 From: Robin Dittmar Date: Tue, 1 Sep 2026 17:25:39 +0200 Subject: [PATCH] fix: visiting account view no longer fetches /lists --- src/stores/lists.ts | 1 + src/views/AccountView.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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() }) -- 2.54.0