diff --git a/components/case/representation/index.js b/components/case/representation/index.js index 55e4def4..c377cc68 100644 --- a/components/case/representation/index.js +++ b/components/case/representation/index.js @@ -322,12 +322,16 @@ let MakeRepresentation = (props) => { todaysDate <= statementDueDate && buildArr.push("Statement"); - currentView.caseReference.appealType != 846040004 || - (currentView.caseReference.appealType == 846040004 && - currentView.caseReference.specialistProcess != 846040001 && - todaysDate >= statementDueDate && - todaysDate <= finalCommentsDate && - buildArr.push("Final comments")); + currentView.caseReference.appealType != 846040004 && + todaysDate >= statementDueDate && + todaysDate <= finalCommentsDate && + buildArr.push("Final comments"); + + currentView.caseReference.appealType == 846040004 && + currentView.caseReference.specialistProcess != 846040001 && + todaysDate >= statementDueDate && + todaysDate <= finalCommentsDate && + buildArr.push("Final comments"); return buildArr; };