From 5f85abdf8682d3cc120cc69a0f6f87af3c191a4a Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Fri, 1 May 2026 16:59:56 +0530 Subject: [PATCH] use full for fast loading than weekly for payee report --- src/features/dashboard/useDashboardData.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/dashboard/useDashboardData.ts b/src/features/dashboard/useDashboardData.ts index c2cb79d..c0a00d7 100644 --- a/src/features/dashboard/useDashboardData.ts +++ b/src/features/dashboard/useDashboardData.ts @@ -15,7 +15,7 @@ export function useDashboardData(type: "expense" | "income") { // Fetch reports for aggregation const weeklyReport = useReportList({ period: "weekly", rolling: true }); const monthlyReport = useReportList({ period: "monthly", rolling: true }); - const payeeReport = useReportList({ period: "weekly", rolling: true, group_by: "payee" }); + const payeeReport = useReportList({ period: "full", rolling: true, group_by: "payee" }); const isLoading = latestQuery.isLoading ||