Skip to content

Commit 7ad0bd7

Browse files
committed
chore: import type
1 parent 2206492 commit 7ad0bd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/uikit-react-native/src/domain/messageSearch/component/MessageSearchHeader.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useEffect, useRef } from 'react';
2-
import { Platform } from 'react-native';
2+
import { Platform, type TextInput as RNTextInput } from 'react-native';
33

44
import {
55
Box,
@@ -25,7 +25,7 @@ const MessageSearchHeader = ({
2525
const { colors } = useUIKitTheme();
2626
const { STRINGS } = useLocalization();
2727

28-
const inputRef = useRef<TextInput>(null);
28+
const inputRef = useRef<RNTextInput>(null);
2929
const inputColor = colors.ui.input.default.active;
3030
const searchEnabled = keyword.length > 0;
3131

0 commit comments

Comments
 (0)