From f1a2718a20da9a06755ca577beb0ed61c808ac72 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 02:03:25 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/documents.pleading.new.tsx | 4 ++++ 1 file changed, 4 insertions(+) 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,`;