From b763dab04ddfa964c0ae77f18da9330ee05aa84a Mon Sep 17 00:00:00 2001 From: Hannah Date: Sat, 10 Jan 2026 20:33:02 -0700 Subject: [PATCH] Change tax year to 2025 --- .../contributor-all-reports.component.ts | 2 +- .../contributor-yearly-report.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Client/src/app/components/contributor-all-reports/contributor-all-reports.component.ts b/Client/src/app/components/contributor-all-reports/contributor-all-reports.component.ts index f3cce05..63400b2 100644 --- a/Client/src/app/components/contributor-all-reports/contributor-all-reports.component.ts +++ b/Client/src/app/components/contributor-all-reports/contributor-all-reports.component.ts @@ -17,7 +17,7 @@ export class ContributorAllReportsComponent implements OnInit { ngOnInit() { - const taxYear = 2024; + const taxYear = 2025; const query = forkJoin([this.userService.getAll(), this.transactionService.getByYear(taxYear), this.transactionService.getByYear(taxYear - 1)]); diff --git a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts index c17bc40..72bb485 100644 --- a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts +++ b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts @@ -34,7 +34,7 @@ export class ContributorYearlyReportComponent implements OnInit { public contributorCity: string = 'Butte'; public contributorState: string = 'MT'; public contributorZip: string = '59701'; - public taxYear: number = 2024; + public taxYear: number = 2025; public rowsFirstPage: number = 11;