diff --git a/src/components/contacts/contact-form-dialog.tsx b/src/components/contacts/contact-form-dialog.tsx index 2fb28eb..7d698b9 100644 --- a/src/components/contacts/contact-form-dialog.tsx +++ b/src/components/contacts/contact-form-dialog.tsx @@ -40,6 +40,7 @@ export interface ContactRecord { postal_code?: string | null; notes?: string | null; contact_type?: string | null; + property_address?: string | null; } export function ContactFormDialog({ @@ -92,6 +93,7 @@ export function ContactFormDialog({ postal_code: form.postal_code || null, notes: form.notes || null, contact_type: form.contact_type || "other", + property_address: form.property_address || null, }; let saved: { id: string; name: string } | null = null; if (contact?.id) { @@ -185,6 +187,19 @@ export function ContactFormDialog({ set("postal_code", e.target.value)} /> + {form.contact_type === "homeowner" && ( +
+ Used as the property address on collection ledger statements. +
+