Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit 90ae271

Browse files
committed
fix props type
1 parent bde3af2 commit 90ae271

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/JBDateInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ export type JBDateInputProps = {
3535
label?: string,
3636
style?:string,
3737
name?:string,
38-
min?: string,
39-
max?: string,
38+
min: string | null | undefined,
39+
max: string | null | undefined,
4040
format?: string,
4141
className?:string,
4242
onKeyup?: (e:JBDateInputEventType<KeyboardEvent>)=>void,

0 commit comments

Comments
 (0)