We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22cf7cf commit c5c1a7aCopy full SHA for c5c1a7a
1 file changed
resources/js/utils/prefetch.ts
@@ -79,6 +79,10 @@ function prefetchDashboard(queryClient: QueryClient) {
79
const organizationId = getCurrentOrganizationId();
80
if (!organizationId) return;
81
82
+ // Prefetch projects and tasks for RecentlyTrackedTasksCard
83
+ prefetchProjects(queryClient);
84
+ prefetchTasks(queryClient);
85
+
86
// Prefetch all dashboard card data
87
queryClient.prefetchQuery({
88
queryKey: ['timeEntries', organizationId],
0 commit comments