Skip to content

Commit

Permalink
chore: import type
Browse files Browse the repository at this point in the history
  • Loading branch information
bang9 committed Oct 18, 2024
1 parent daccda6 commit c0ec1c0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect, useRef } from 'react';
import { Platform } from 'react-native';
import { Platform, type TextInput as RNTextInput } from 'react-native';

import {
Box,
Expand All @@ -25,7 +25,7 @@ const MessageSearchHeader = ({
const { colors } = useUIKitTheme();
const { STRINGS } = useLocalization();

const inputRef = useRef<TextInput>(null);
const inputRef = useRef<RNTextInput>(null);
const inputColor = colors.ui.input.default.active;
const searchEnabled = keyword.length > 0;

Expand Down

0 comments on commit c0ec1c0

Please sign in to comment.