From 352628459cf9530f015bcd67297e2cd9963dcc24 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 09:00:03 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/contacts/contact-form-dialog.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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" && ( +
+ + set("property_address", e.target.value)} + /> +

+ Used as the property address on collection ledger statements. +

+
+ )}