Skip to content

Commit 123eb2b

Browse files
Artur Yorshmalashkevich
authored andcommitted
fix(components): datepicker - make autodismiss prop optional
1 parent c681948 commit 123eb2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/datepicker/datepicker.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
import { TextProps } from '../text/text.component';
2020

2121
export interface DatepickerProps<D = Date> extends BaseDatepickerProps<D>, CalendarProps<D> {
22-
autoDismiss: boolean;
22+
autoDismiss?: boolean;
2323
}
2424

2525
export type DatepickerElement<D = Date> = React.ReactElement<DatepickerProps<D>>;

0 commit comments

Comments
 (0)