diff --git a/controller/auditController.ts b/controller/auditController.ts index 80aca54..cbcabcc 100644 --- a/controller/auditController.ts +++ b/controller/auditController.ts @@ -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; }