Change tax year to 2025
continuous-integration/drone Build is passing Details

master
Hannah 2026-01-10 20:33:02 -07:00
parent 10b8212980
commit b763dab04d
2 changed files with 2 additions and 2 deletions

View File

@ -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)]);

View File

@ -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;