Skip to content

Commit b538ed2

Browse files
committed
clean up
1 parent 88c24fd commit b538ed2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Input/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
KeyboardTypeOptions,
1010
StyleSheet,
1111
TextStyle,
12-
TextInputSubmitEditingEventData,
12+
TextInputSubmitEditingEvent,
1313
} from 'react-native';
1414
import { GlobalStyles } from '../../styles';
1515
import Text from '../Text';
@@ -20,7 +20,7 @@ type InputProps = {
2020
placeholderStyle?: TextStyle | TextStyle[];
2121
onChangeText: ((text: string) => void) | undefined;
2222
onSubmitEditing?:
23-
| ((e: NativeSyntheticEvent<TextInputSubmitEditingEventData>) => void)
23+
| ((e: NativeSyntheticEvent<TextInputSubmitEditingEvent>) => void)
2424
| undefined;
2525
onClearButtonPress?: null | (() => void);
2626
onBlur?: null | (() => void);

0 commit comments

Comments
 (0)