feat: add health check endpoint, fix task date filtering, and update Next.js type reference path

This commit is contained in:
poyrazavsever
2026-06-06 23:25:38 +03:00
parent 59b3897b44
commit 990c7a21b6
3 changed files with 9 additions and 2 deletions
@@ -43,7 +43,7 @@ export function AnalyticsClient({ data }: AnalyticsClientProps) {
};
const filteredFinances = data.finances.filter(f => filterByDate(f.transaction_date));
const filteredTasks = data.tasks.filter(t => filterByDate(t.created_at || t.due_at));
const filteredTasks = data.tasks.filter(t => filterByDate(t.created_at || t.due_at || null));
// Project-based income
const projectIncomeMap = new Map();