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) =>