diff --git a/src/figma-make/components/pages/dashboard/Dashboard.tsx b/src/figma-make/components/pages/dashboard/Dashboard.tsx index ae0d8f22..36b04cf6 100644 --- a/src/figma-make/components/pages/dashboard/Dashboard.tsx +++ b/src/figma-make/components/pages/dashboard/Dashboard.tsx @@ -62,7 +62,7 @@ const CATEGORY_LABELS: { [key: string]: string } = { const getThisMonthRange = () => ({ dateFrom: moment().startOf('month').format('YYYY-MM-DD'), - dateTo: moment().format('YYYY-MM-DD'), + dateTo: moment().endOf('month').format('YYYY-MM-DD'), }); export function Dashboard() {