You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This is workaround for https://github.com/Expensify/App/issues/47939: in case when user is using Chrome on Android we set inputMode to 'search' to disable autocomplete bar above the keyboard.
286
288
// If we need some other inputMode (eg. 'decimal'), then the autocomplete bar will show, but we can do nothing about it as it's a known Chrome bug.
Copy file name to clipboardExpand all lines: src/components/TextInput/BaseTextInput/types.ts
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -186,6 +186,9 @@ type CustomBaseTextInputProps = {
186
186
187
187
/** Whether the input should be enforced to take full height of container. Default is `false` */
188
188
shouldUseFullInputHeight?: boolean;
189
+
190
+
/** Whether the input prefix should use the default `Text` line height fallback. Disable this if you intentionally want the prefix to have `lineHeight: undefined` */
0 commit comments