Skip to content

Commit 9cbb81b

Browse files
committed
feat: add dob as optional field for custom identifier
1 parent bdf215b commit 9cbb81b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/features/session/components/StartSessionForm/StartSessionForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const StartSessionForm = ({ currentGroup, initialValues, readOnly, onSubm
108108
kind: 'dynamic',
109109
deps: ['subjectIdentificationMethod'],
110110
render({ subjectIdentificationMethod }) {
111-
return subjectIdentificationMethod === 'PERSONAL_INFO'
111+
return subjectIdentificationMethod === 'PERSONAL_INFO' || subjectIdentificationMethod === 'CUSTOM_ID'
112112
? {
113113
kind: 'date',
114114
label: t('core.identificationData.dateOfBirth.label')

0 commit comments

Comments
 (0)