Skip to content

Commit 88c24fd

Browse files
committed
clean up
1 parent 3fc2c23 commit 88c24fd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,4 @@
192192
"@op-engineering/op-sqlite": "^15.2.11",
193193
"lodash": "^4.18.1"
194194
}
195-
}
195+
}

src/components/Input/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import {
66
Image,
77
ViewStyle,
88
NativeSyntheticEvent,
9-
TextInputSubmitEditingEvent,
109
KeyboardTypeOptions,
1110
StyleSheet,
1211
TextStyle,
12+
TextInputSubmitEditingEventData,
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<TextInputSubmitEditingEvent>) => void)
23+
| ((e: NativeSyntheticEvent<TextInputSubmitEditingEventData>) => void)
2424
| undefined;
2525
onClearButtonPress?: null | (() => void);
2626
onBlur?: null | (() => void);

0 commit comments

Comments
 (0)