diff --git a/src/routes/settings.form-templates.tsx b/src/routes/settings.form-templates.tsx index d426a7e..ad28b88 100644 --- a/src/routes/settings.form-templates.tsx +++ b/src/routes/settings.form-templates.tsx @@ -102,8 +102,10 @@ function TemplateEditor({ formKey, userId }: { formKey: FormKey; userId: string setConfig({ ...DEFAULT_TEMPLATES[formKey] }); }; - const showItemLabels = true; - const showDefaultLineItems = true; + const isLetter = formKey === "letter"; + const showItemLabels = !isLetter; + const showDefaultLineItems = !isLetter; + const showLetterheadEditor = isLetter; return (