diff --git a/src/main/java/uk/gov/hmcts/reform/civil/enums/AllocatedTrack.java b/src/main/java/uk/gov/hmcts/reform/civil/enums/AllocatedTrack.java index 7d9f1d94704..27ea4f75fe6 100644 --- a/src/main/java/uk/gov/hmcts/reform/civil/enums/AllocatedTrack.java +++ b/src/main/java/uk/gov/hmcts/reform/civil/enums/AllocatedTrack.java @@ -8,7 +8,8 @@ public enum AllocatedTrack { MULTI_CLAIM; public static AllocatedTrack getAllocatedTrack(BigDecimal statementOfValueInPounds, ClaimType claimType) { - if (claimType != null) { + //The FLIGHT_DELAY ClaimType is only applicable for SPEC cases at the moment. + if (claimType != null && claimType != ClaimType.FLIGHT_DELAY) { switch (claimType) { case PERSONAL_INJURY: case CLINICAL_NEGLIGENCE: