We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8b4744 commit 03e9b76Copy full SHA for 03e9b76
1 file changed
apps/web/src/routes/_app/group/manage.tsx
@@ -32,9 +32,9 @@ type ManageGroupFormProps = {
32
accessibleInteractiveInstrumentIds: Set<string>;
33
defaultIdentificationMethod?: SubjectIdentificationMethod;
34
idValidationRegex?: null | string;
35
- minimumAge?: number;
36
- minimumAgeApplied?: boolean;
37
- subjectIdDisplayLength?: number;
+ minimumAge?: null | number;
+ minimumAgeApplied?: boolean | null;
+ subjectIdDisplayLength?: null | number;
38
};
39
40
onSubmit: (data: Partial<UpdateGroupData>) => Promisable<any>;
0 commit comments