Skip to content

Commit 44b39ce

Browse files
committed
linter fix
1 parent 1fadd3f commit 44b39ce

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/Date/DatePickerInput.shared.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ export type DatePickerInputProps = {
2626
inputEnabled?: boolean
2727
disableStatusBarPadding?: boolean
2828
animationType?: 'slide' | 'fade' | 'none'
29-
presentationStyle?: 'fullScreen' | 'pageSheet' | 'formSheet' | 'overFullScreen'
29+
presentationStyle?:
30+
| 'fullScreen'
31+
| 'pageSheet'
32+
| 'formSheet'
33+
| 'overFullScreen'
3034
} & Omit<
3135
React.ComponentProps<typeof TextInput>,
3236
'value' | 'onChange' | 'onChangeText' | 'inputMode'

src/Date/DatePickerInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function DatePickerInput(
1212
withModal = true,
1313
calendarIcon = 'calendar',
1414
animationType = 'slide',
15-
presentationStyle = "fullScreen",
15+
presentationStyle = 'fullScreen',
1616
...rest
1717
}: DatePickerInputProps,
1818
ref: any

0 commit comments

Comments
 (0)