From cdf56fdec245dc09e51bd4377e75bc1f6fcc44ec 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 02:42:22 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/forms/custom-form-builder.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/forms/custom-form-builder.tsx b/src/components/forms/custom-form-builder.tsx index 8791872..31c5492 100644 --- a/src/components/forms/custom-form-builder.tsx +++ b/src/components/forms/custom-form-builder.tsx @@ -822,6 +822,7 @@ export function CustomFormBuilder() { margins: { top: 80, bottom: 80, left: 120, right: 120 }, children: [ new DocxParagraph({ + spacing: docxLineSpacing, children: buildDocxRuns(cell?.runs ?? []), }), ], @@ -847,6 +848,7 @@ export function CustomFormBuilder() { children.push( new DocxParagraph({ alignment: align, + spacing: docxLineSpacing, indent: indentTwips ? { left: indentTwips } : undefined, children: buildDocxRuns(seg.runs, { italic: seg.caption }), }),