diff --git a/src/components/forms/custom-form-builder.tsx b/src/components/forms/custom-form-builder.tsx index 143924a..77ff82c 100644 --- a/src/components/forms/custom-form-builder.tsx +++ b/src/components/forms/custom-form-builder.tsx @@ -968,6 +968,7 @@ export function CustomFormBuilder() { setFontFamily(t.font_family); setFontSize(t.font_size_pt); if (typeof t.line_height === "number" && t.line_height > 0) setLineHeight(t.line_height); + if (typeof t.margin_inches === "number" && t.margin_inches > 0) setMarginInches(t.margin_inches); editor.commands.setContent(t.body_html || "

"); const loadedFields = Array.isArray(t.fields) ? t.fields : []; setFormFields(loadedFields);