We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2206492 commit 7ad0bd7Copy full SHA for 7ad0bd7
packages/uikit-react-native/src/domain/messageSearch/component/MessageSearchHeader.tsx
@@ -1,5 +1,5 @@
1
import React, { useEffect, useRef } from 'react';
2
-import { Platform } from 'react-native';
+import { Platform, type TextInput as RNTextInput } from 'react-native';
3
4
import {
5
Box,
@@ -25,7 +25,7 @@ const MessageSearchHeader = ({
25
const { colors } = useUIKitTheme();
26
const { STRINGS } = useLocalization();
27
28
- const inputRef = useRef<TextInput>(null);
+ const inputRef = useRef<RNTextInput>(null);
29
const inputColor = colors.ui.input.default.active;
30
const searchEnabled = keyword.length > 0;
31
0 commit comments