+
{fetchedCase?.caption ? fetchedCase?.caption : <>>},
@@ -35,13 +30,13 @@ const MichiganCaption = (props) => {
Plaintiff(s),
- Index no. {fetchedCase?.caseNumber}
+ Case No. {fetchedCase?.caseNumber}
{displayCopy.versusText}
-
Judge: {fetchedCase?.judge}
+
Hon. {fetchedCase?.judge}
{fetchedCase?.captionTwo ? fetchedCase?.captionTwo : <>>},
@@ -51,9 +46,7 @@ const MichiganCaption = (props) => {
Defendant(s)
-
- ----------------------------------------------------------------------------X
-
+
__________________________________________________/
diff --git a/src/Constants/Copy/docEditCopy.js b/src/Constants/Copy/docEditCopy.js
index 8861ccf..28d7d31 100644
--- a/src/Constants/Copy/docEditCopy.js
+++ b/src/Constants/Copy/docEditCopy.js
@@ -55,6 +55,31 @@ export const docEditCopy = {
caseNumber: "Docket No.",
versusText: "vs.",
},
+ Michigan: {
+ prelimaryStatement: function (documentType, respondent, servingParty) {
+ const docCopy =
+ documentType && documentType === "interrogatories"
+ ? "Interrogatories"
+ : documentType && documentType === "admissions"
+ ? "Request for Admissions"
+ : documentType && documentType === "production"
+ ? "Request for Production"
+ : documentType && documentType.includes("combined")
+ ? "Interrogatories and Request for Production"
+ : null;
+
+ const copyString = `COMES NOW, Respondent(s), ${respondent}, through counsel, in response to the ${docCopy}
+ served by ${servingParty}, and states as follows:`;
+
+ return (
+
+ );
+ },
+ caseNumber: "Case No.",
+ versusText: "v.",
+ },
};
export const outgoingComesNow = (state, fetchedCase) => {
diff --git a/src/styles/docedit-page.scss b/src/styles/docedit-page.scss
index cd3b4fb..2265071 100644
--- a/src/styles/docedit-page.scss
+++ b/src/styles/docedit-page.scss
@@ -248,6 +248,15 @@
color: #373737;
}
+.centered-text {
+ text-align: center;
+ margin-bottom: 30px;
+}
+
+.plain-text {
+ font-weight: 400 !important;
+}
+
.docedit-uppercol2 {
display: flex;
flex-direction: column;