diff options
Diffstat (limited to 'src/components/forms')
-rw-r--r-- | src/components/forms/TextField.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index 410cc654e..d28700df9 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -226,6 +226,7 @@ export function createInput(Component: typeof TextInput) { <> <Component accessibilityHint={undefined} + hitSlop={HITSLOP_20} {...rest} accessibilityLabel={label} ref={refs} @@ -242,7 +243,6 @@ export function createInput(Component: typeof TextInput) { placeholder={placeholder || label} placeholderTextColor={t.palette.contrast_500} keyboardAppearance={t.name === 'light' ? 'light' : 'dark'} - hitSlop={HITSLOP_20} style={flattened} /> |