From 9d5b6e5935a352106db8fc0e4d1f2af202b0d0c9 Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Sat, 25 Jan 2025 09:02:25 -0700 Subject: [PATCH] update tax year to 2024 --- .../contributor-all-reports.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 af51322..972a0a9 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 @@ -16,7 +16,7 @@ export class ContributorAllReportsComponent implements OnInit { constructor(private printService: PrintService, private userService: UserService, private transactionService: TransactionService) { } ngOnInit() { - const taxYear = 2023; + const taxYear = 2024; const query = forkJoin([this.userService.getAll(), this.transactionService.getByYear(taxYear), this.transactionService.getByYear(taxYear - 1)]);