diff --git a/src/routes/documents.pleading.new.tsx b/src/routes/documents.pleading.new.tsx
index 8daf654..3a56b0b 100644
--- a/src/routes/documents.pleading.new.tsx
+++ b/src/routes/documents.pleading.new.tsx
@@ -35,6 +35,9 @@ function PleadingNewPage() {
const [title, setTitle] = useState("");
const [bodyHtml, setBodyHtml] = useState("
");
const [footnotes, setFootnotes] = useState([]);
+ const [footerLeft, setFooterLeft] = useState("");
+ const [footerCenter, setFooterCenter] = useState("");
+ const [footerRight, setFooterRight] = useState("");
const [docName, setDocName] = useState("Pleading");
const [saving, setSaving] = useState(false);
@@ -53,6 +56,7 @@ function PleadingNewPage() {
courtType, circuit, county,
plaintiffs, defendants, caseNumber,
title, bodyHtml, footnotes,
+ footerLeft, footerCenter, footerRight,
};
const headerLine1 = `IN THE ${courtType} COURT OF THE ${circuit} JUDICIAL CIRCUIT,`;