Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
guru-aot committed Dec 20, 2024
1 parent 1e0b821 commit 82b9e52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export class AssessmentSequentialProcessingService {
// Only get the full-time contribution totals if the offering intensity is full-time.
OfferingIntensity.fullTime === options.offeringIntensity &&
applicationNumbers?.length > 0
? await this.getFTProgramYearContributionTotals(applicationNumbers)
? await this.getProgramYearContributionTotals(applicationNumbers)
: null,
]);
return {
Expand Down Expand Up @@ -317,7 +317,7 @@ export class AssessmentSequentialProcessingService {
* @param applicationNumbers application numbers.
* @returns full-time program year contribution totals.
*/
private async getFTProgramYearContributionTotals(
private async getProgramYearContributionTotals(
applicationNumbers: string[],
): Promise<FTProgramYearContributionTotal[]> {
const totals = await this.applicationRepo
Expand Down

0 comments on commit 82b9e52

Please sign in to comment.