update tax year to 2024

master
unknown 2025-01-25 09:02:25 -07:00
parent 01f8404805
commit 9d5b6e5935
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export class ContributorAllReportsComponent implements OnInit {
constructor(private printService: PrintService, private userService: UserService, private transactionService: TransactionService) { } constructor(private printService: PrintService, private userService: UserService, private transactionService: TransactionService) { }
ngOnInit() { ngOnInit() {
const taxYear = 2023; const taxYear = 2024;
const query = forkJoin([this.userService.getAll(), this.transactionService.getByYear(taxYear), this.transactionService.getByYear(taxYear - 1)]); const query = forkJoin([this.userService.getAll(), this.transactionService.getByYear(taxYear), this.transactionService.getByYear(taxYear - 1)]);