{appealIsLocalImpact
? t(
- "myrepresentations:local-impact-report",
+ "myrepresentations:local-impact-report"
)
: t(
- "myrepresentations:questionnaire-due-label",
+ "myrepresentations:questionnaire-due-label"
)}
:{" "}
@@ -1179,7 +1179,7 @@ const mapStateToProps = (state) => {
appealType: state.appealType,
currentView: state.currentView,
myRepresentations: state.myRepresentations,
- initialValues: state.currentView.caseReference.repDetails,
+ initialValues: state.currentView.caseReference.repDetails
//form: state.form,
};
};
@@ -1203,7 +1203,7 @@ const mapDispatchToProps = (dispatch) => {
},
setRepresentationReset: () => {
dispatch(setRepresentationReset());
- },
+ }
};
};
@@ -1211,11 +1211,11 @@ const selector = formValueSelector("representationForm");
export default connect(
mapStateToProps,
- mapDispatchToProps,
+ mapDispatchToProps
)(
reduxForm({
form: "representationForm",
destroyOnUnmount: false,
- enableReinitialize: true,
- })(MakeRepresentation),
+ enableReinitialize: true
+ })(MakeRepresentation)
);