Skip to content

Commit fbb774b

Browse files
Resolved eslint errors
1 parent 7d42e3d commit fbb774b

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/components/TextInput/BaseTextInput/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type {MarkdownRange, MarkdownStyle} from '@expensify/react-native-live-markdown';
2-
import type {ForwardedRef} from 'react';
32
import type {GestureResponderEvent, StyleProp, TextInputProps, TextStyle, ViewStyle} from 'react-native';
43
import type {MaskedTextInputOwnProps} from 'react-native-advanced-input-mask/lib/typescript/src/types';
54
import type {AnimatedTextInputRef} from '@components/RNTextInput';

src/pages/PrivateNotes/PrivateNotesEditPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ function PrivateNotesEditPage({route, report, accountID}: PrivateNotesEditPagePr
167167
debouncedSavePrivateNote(text);
168168
setPrivateNote(text);
169169
}}
170-
ref={(el: AnimatedTextInputRef) => {
170+
ref={(el: AnimatedTextInputRef | null) => {
171171
if (!el) {
172172
return;
173173
}

0 commit comments

Comments
 (0)