Skip to content

Commit

Permalink
Merge pull request #55 from italia/fix/remove_performance_school
Browse files Browse the repository at this point in the history
fix: remove performace check school
  • Loading branch information
simone-amadio-acn authored Jun 7, 2024
2 parents ec0f5ff + 1ecd1bb commit 2cecb7a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions controller/auditController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,8 @@ const cleanSchoolJSONReport = async (jsonResult: string) => {
}

const performanceScore = await getPerformanceScore(parsedResult);
const improvementPlanScore = await getImprovementPlanScore(parsedResult);
let performanceStatus = true;
if (performanceScore < 0.5 && improvementPlanScore < 1) {
if (performanceScore < 0.5) {
performanceStatus = false;
}

Expand Down

0 comments on commit 2cecb7a

Please sign in to comment.