Skip to content

Commit

Permalink
#1445 Statement of eligibility fix (#1446)
Browse files Browse the repository at this point in the history
  • Loading branch information
warrensearle authored Jul 20, 2021
1 parent 4de6d6b commit 2c3564a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/exerciseHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ function hasCV(data) {
function hasStatementOfEligibility(data) {
switch (data.assessmentOptions) {
case 'statement-of-eligibility':
return true;
return !!(data.aSCApply && data.selectionCriteria && data.selectionCriteria.length);
default:
return false;
}
Expand Down

0 comments on commit 2c3564a

Please sign in to comment.