feat: integrate monthly chart with collapsible feature in transactions page; update transaction period to default to last 3 months

This commit is contained in:
Julien Froidefond
2025-12-21 07:31:29 +01:00
parent 53798176a0
commit aa2c656c00
5 changed files with 766 additions and 51 deletions

View File

@@ -29,7 +29,7 @@ export function useTransactionsPage() {
"all",
]);
const [showReconciled, setShowReconciled] = useState<string>("all");
const [period, setPeriod] = useState<Period>("all");
const [period, setPeriod] = useState<Period>("3months");
const [customStartDate, setCustomStartDate] = useState<Date | undefined>(
undefined,
);