Skip to content

Commit ae6c54c

Browse files
committed
fix lint
1 parent 3d39ebc commit ae6c54c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Date/DatePickerInputWithoutModal.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ function DatePickerInputWithoutModal(
9292
disabled={disabled}
9393
onChangeText={onDateInputChangeText}
9494
onChange={(e) => onChangeText && onChangeText(e.nativeEvent.text)}
95-
keyboardAppearance={rest.keyboardAppearance ?? (theme.dark ? 'dark' : 'default')}
95+
keyboardAppearance={
96+
rest.keyboardAppearance ?? (theme.dark ? 'dark' : 'default')
97+
}
9698
error={(!!error && !hideValidationErrors) || !!hasError}
9799
style={[styles.input, style]}
98100
inputButton={inputButton}

0 commit comments

Comments
 (0)