diff --git a/src/cli/app.ts b/src/cli/app.ts index e2699ca..acce588 100644 --- a/src/cli/app.ts +++ b/src/cli/app.ts @@ -144,8 +144,7 @@ const process = async () => { }; const exportContainsInconsistencies = (projectReport: ProjectContracts.IProjectReportResponseContract) => { - const projectHasIssues = projectReport.variant_issues.length > 0 || projectReport.type_issues.length > 0; - if (!projectHasIssues) { + if (projectReport.variant_issues.length > 0 || projectReport.type_issues.length > 0) { return true; }