From 02eb55995e5f9e624c48aab18d9a5874b0797447 Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Thu, 7 May 2026 15:03:37 +0530 Subject: [PATCH] passing needed periods and group_by --- src/Dashboard.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Dashboard.tsx b/src/Dashboard.tsx index d5a98a1..2fb1971 100644 --- a/src/Dashboard.tsx +++ b/src/Dashboard.tsx @@ -15,9 +15,10 @@ import { export default function Dashboard() { const report = useReport({ + periods: ["weekly", "monthly", "full"], rolling: true, include_transactions: true, - group_by: ["payee"], + group_by: ["tags"], }) const isLoading = report.isLoading;