Skip to content

Commit 03e9b76

Browse files
committed
chore: add null option to nullable setting types
1 parent f8b4744 commit 03e9b76

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/web/src/routes/_app/group/manage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ type ManageGroupFormProps = {
3232
accessibleInteractiveInstrumentIds: Set<string>;
3333
defaultIdentificationMethod?: SubjectIdentificationMethod;
3434
idValidationRegex?: null | string;
35-
minimumAge?: number;
36-
minimumAgeApplied?: boolean;
37-
subjectIdDisplayLength?: number;
35+
minimumAge?: null | number;
36+
minimumAgeApplied?: boolean | null;
37+
subjectIdDisplayLength?: null | number;
3838
};
3939
};
4040
onSubmit: (data: Partial<UpdateGroupData>) => Promisable<any>;

0 commit comments

Comments
 (0)