Skip to content

Commit

Permalink
DTSCCI-1258: Defendant dashboard shows "You haven't responded to the …
Browse files Browse the repository at this point in the history
…claim" when they have
  • Loading branch information
nigeldunne committed Dec 17, 2024
1 parent 5fa58eb commit 8deca93
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ public boolean isDecisionForReconsiderationMade() {
public boolean isClaimantDefaultJudgement() {
return caseData.getRespondent1ResponseDeadline() != null
&& caseData.getRespondent1ResponseDeadline().isBefore(LocalDate.now().atTime(FOUR_PM))
&& caseData.getPaymentTypeSelection() != null;
&& caseData.getPaymentTypeSelection() != null
&& caseData.getRespondent1ResponseDate() != null;
}

@Override
Expand Down

0 comments on commit 8deca93

Please sign in to comment.