From 8deca93442b509d44b746849e55af2b08056c7b3 Mon Sep 17 00:00:00 2001 From: Nigel Dunne <12184413+nigeldunne@users.noreply.github.com> Date: Tue, 17 Dec 2024 14:21:36 +0000 Subject: [PATCH] DTSCCI-1258: Defendant dashboard shows "You haven't responded to the claim" when they have --- .../model/citizenui/CcdDashboardDefendantClaimMatcher.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/civil/model/citizenui/CcdDashboardDefendantClaimMatcher.java b/src/main/java/uk/gov/hmcts/reform/civil/model/citizenui/CcdDashboardDefendantClaimMatcher.java index 6dc0d30ee15..cacc6591a1b 100644 --- a/src/main/java/uk/gov/hmcts/reform/civil/model/citizenui/CcdDashboardDefendantClaimMatcher.java +++ b/src/main/java/uk/gov/hmcts/reform/civil/model/citizenui/CcdDashboardDefendantClaimMatcher.java @@ -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