diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index 10e0a8a6f5..1ee58303ae 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -96,11 +96,7 @@ export function Root({children, isInvalid = false}: RootProps) { }, ]} // onPressIn/out don't work on android web - onPress={e => { - e.preventDefault() - e.stopPropagation() - inputRef.current?.focus() - }} + onPress={() => inputRef.current?.focus()} onHoverIn={onHoverIn} onHoverOut={onHoverOut}> {children} @@ -214,6 +210,7 @@ export function createInput(Component: typeof TextInput) { { lineHeight: a.text_md.lineHeight * 1.1875, textAlignVertical: rest.multiline ? 'top' : undefined, + minHeight: rest.multiline ? 60 : undefined, }, ]} />