From f06a78017a92de96bb4df0812c5934023440df95 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 7 Mar 2025 16:20:55 +0000 Subject: fix autocomplete (#7930) --- src/view/com/composer/text-input/TextInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/view/com/composer/text-input/TextInput.tsx') diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index 22d1f1d08..6f5e812ed 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -253,7 +253,7 @@ export const TextInput = forwardRef(function TextInputImpl( style={[ inputTextStyle, a.w_full, - a.h_full, + !autocompletePrefix && a.h_full, { textAlignVertical: 'top', minHeight: 60, -- cgit 1.4.1