diff --git a/components/case/representation/index.js b/components/case/representation/index.js
index db17e814..fdc56e91 100644
--- a/components/case/representation/index.js
+++ b/components/case/representation/index.js
@@ -322,9 +322,9 @@ let MakeRepresentation = (props) => {
todaysDate <= statementDueDate &&
buildArr.push("Statement");
- currentView.caseReference.appealType != 846040004 &&
- currentView.caseReference.appealType == 846040015 &&
- currentView.caseReference.specialistProcess != 846040001 &&
+ (currentView.caseReference.appealType != 846040004 ||
+ (currentView.caseReference.appealType == 846040015 &&
+ currentView.caseReference.specialistProcess != 846040001)) &&
todaysDate >= statementDueDate &&
todaysDate <= finalCommentsDate &&
buildArr.push("Final comments");
diff --git a/components/case/representation/representationAgent.js b/components/case/representation/representationAgent.js
index 64d97291..2babc922 100644
--- a/components/case/representation/representationAgent.js
+++ b/components/case/representation/representationAgent.js
@@ -196,31 +196,34 @@ const RepAgent = (props) => {
>
)}
-
-
+ )}
>
);
};
diff --git a/components/case/representation/representationElements.js b/components/case/representation/representationElements.js
index 78551695..18257770 100644
--- a/components/case/representation/representationElements.js
+++ b/components/case/representation/representationElements.js
@@ -468,7 +468,7 @@ export const RenderPickList = ({
datafieldname,
name,
label,
- input,
+ input: { onChange, value },
optionsArr,
meta: { touched, error },
errorMsg,
@@ -493,14 +493,15 @@ export const RenderPickList = ({
{errorMsg}
)}
-
+ {value}
>
)}
-
-
-
+ {typeof formObj.representationForm.values.representationType !=
+ "undefined" && (
+
-
+ )}
>
);
};
diff --git a/components/case/representation/representationLandowner.js b/components/case/representation/representationLandowner.js
index 57e28309..10c34e12 100644
--- a/components/case/representation/representationLandowner.js
+++ b/components/case/representation/representationLandowner.js
@@ -104,26 +104,28 @@ const RepLandOwner = (props) => {
{" "}
-
-