Skip to content

Commit

Permalink
490851 - Fixes incorrect recycling target (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
saywasingh-eviden authored Jan 6, 2025
1 parent e7735c6 commit 1d65564
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ private int GetPrnStatusCount(IQueryable<EprnResultsDto> prns, string status)
{
return null;
}
return recyclingTargets[year + 1][materialType.Value];
return recyclingTargets[year][materialType.Value];
}

private static List<Material> AddGlassRemelt(List<Material> materials)
Expand Down

0 comments on commit 1d65564

Please sign in to comment.