From b319f3c109ac9bc26d5e63d0a3d98cfde652d71d Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Thu, 5 Jan 2023 19:00:31 -0700 Subject: [PATCH] force build for tax year change --- .../contributor-all-reports/contributor-all-reports.component.ts | 1 + 1 file changed, 1 insertion(+) 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 07197d3..567105b 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,6 +17,7 @@ export class ContributorAllReportsComponent implements OnInit { ngOnInit() { const taxYear = 2022; + const query = forkJoin([this.userService.getAll(), this.transactionService.getByYear(taxYear), this.transactionService.getByYear(taxYear - 1)]);