diff options
Diffstat (limited to 'src/components/ProgressGuide/FollowDialog.tsx')
-rw-r--r-- | src/components/ProgressGuide/FollowDialog.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ProgressGuide/FollowDialog.tsx b/src/components/ProgressGuide/FollowDialog.tsx index f2eb4fa3d..c4a5f0fa0 100644 --- a/src/components/ProgressGuide/FollowDialog.tsx +++ b/src/components/ProgressGuide/FollowDialog.tsx @@ -293,8 +293,8 @@ let Header = ({ interestsDisplayNames, }: { guide: Follow10ProgressGuide - inputRef: React.RefObject<TextInput> - listRef: React.RefObject<ListMethods> + inputRef: React.RefObject<TextInput | null> + listRef: React.RefObject<ListMethods | null> onSelectTab: (v: string) => void searchText: string setHeaderHeight: (v: number) => void @@ -565,7 +565,7 @@ function SearchInput({ }: { onChangeText: (text: string) => void onEscape: () => void - inputRef: React.RefObject<TextInput> + inputRef: React.RefObject<TextInput | null> defaultValue: string }) { const t = useTheme() |