Skip to content

Commit

Permalink
fix: remove performace check school
Browse files Browse the repository at this point in the history
  • Loading branch information
simone-amadio-acn committed Jun 7, 2024
1 parent ec0f5ff commit 1ecd1bb
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 1ecd1bb

Please sign in to comment.