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 ||