Skip to content

Commit 6b77e52

Browse files
authored
fix(daterangepicker): modify the characterprop to be optional (#1518)
Modify the `character`prop to be optional on DateRangePicker
1 parent be3337c commit 6b77e52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DateRangePicker/DateRangePicker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export interface DateRangePickerProps extends PickerBaseProps, FormControlBasePr
8383
defaultCalendarValue?: ValueType;
8484

8585
/** The character that separates two dates */
86-
character: string;
86+
character?: string;
8787

8888
/** Disabled date */
8989
disabledDate?: DisabledDateFunction;

0 commit comments

Comments
 (0)