Add calendar query prefetch

This commit is contained in:
Gregor Vostrak
2026-02-03 14:12:36 +01:00
parent 28fc324c6a
commit 537a023ab9
4 changed files with 149 additions and 54 deletions

View File

@@ -11,6 +11,7 @@ export function useOrganizationQuery(organizationId: string) {
organization: organizationId,
},
}),
staleTime: 1000 * 30,
});
const organization = computed(() => query.data.value?.data);