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 }), }),