From 2129f69fa0fdf85645fabe77f0803beb6d93f819 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 1 Oct 2024 00:53:11 +0300 Subject: ALF text input for generic search input (#5511) * alf text input for generic search input * clearer ref naming * Adjust props and definition * Migrate props * Migrate props * Migrate props * Replace on search screen * rm old props --------- Co-authored-by: Eric Bailey --- src/components/forms/TextField.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/forms/TextField.tsx') diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index 21928d3df..96d3481cd 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -126,7 +126,7 @@ export type InputProps = Omit & { value?: string onChangeText?: (value: string) => void isInvalid?: boolean - inputRef?: React.RefObject + inputRef?: React.RefObject | React.ForwardedRef } export function createInput(Component: typeof TextInput) { -- cgit 1.4.1