Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/children.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface ChildDetails {
*/
dateOfBirth: string;
/**
* If child selection is enabled, the submission data will include this key.
* If child selection is enabled, the type of the value will be a boolean, otherwise null.
*/
selected?: boolean;
selected: boolean | null;
}

/**
Expand Down
Loading