From 97c9f9a9610676daa55daecfde2dfbd6f6d31e93 Mon Sep 17 00:00:00 2001 From: Richie Date: Mon, 30 Mar 2026 21:54:50 +1100 Subject: [PATCH] CrematoriumStep: add "Decide later" option to witness question MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Grief-sensitive third option — users shouldn't feel forced into a hearse attendance decision during a difficult time. Captures intent as unresolved so the funeral arranger can follow up. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/pages/CrematoriumStep/CrematoriumStep.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/pages/CrematoriumStep/CrematoriumStep.tsx b/src/components/pages/CrematoriumStep/CrematoriumStep.tsx index 5ec9eef..c289154 100644 --- a/src/components/pages/CrematoriumStep/CrematoriumStep.tsx +++ b/src/components/pages/CrematoriumStep/CrematoriumStep.tsx @@ -25,7 +25,7 @@ export interface Crematorium { /** Form values for the crematorium step */ export interface CrematoriumStepValues { /** Will anyone follow the hearse? (service & cremation only) */ - attend: 'yes' | 'no' | null; + attend: 'yes' | 'no' | 'later' | null; } /** Field-level error messages */ @@ -251,6 +251,7 @@ export const CrematoriumStep: React.FC = ({ options={[ { value: 'yes', label: 'Yes' }, { value: 'no', label: 'No' }, + { value: 'later', label: 'Decide later' }, ]} value={values.attend} onChange={(v) =>