From 15f5969c020c01047d96cbff3da8a306e5002a76 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 19:56:13 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/lib/docx-pleading.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/docx-pleading.ts b/src/lib/docx-pleading.ts index 062bc81..44df40f 100644 --- a/src/lib/docx-pleading.ts +++ b/src/lib/docx-pleading.ts @@ -336,7 +336,7 @@ export function buildPleadingDoc(input: PleadingInput): Document { // Signature block (above footnotes, after body) — right-side, indented ~2/3 of page width const sig = input.signature; - const SIG_INDENT = 6240; // ~4.33" from left margin (page content is 9360 dxa wide) + const SIG_INDENT = 5160; // ~3.58" from left margin (shifted 0.75" left of prior 6240) const sigParagraph = (children: TextRun[]) => new Paragraph({ indent: { left: SIG_INDENT }, children }); if (sig && (sig.block?.trim() || sig.imageBytes || sig.typed?.trim())) {