diff --git a/src/components/AmountTextInput.tsx b/src/components/AmountTextInput.tsx index 6842a3e1d335..abdef6707327 100644 --- a/src/components/AmountTextInput.tsx +++ b/src/components/AmountTextInput.tsx @@ -57,6 +57,10 @@ function AmountTextInput( role={CONST.ROLE.PRESENTATION} onKeyPress={onKeyPress as (event: NativeSyntheticEvent) => void} touchableInputWrapperStyle={touchableInputWrapperStyle} + // On iPad, even if the soft keyboard is hidden, the keyboard suggestion is still shown. + // Setting both autoCorrect and spellCheck to false will hide the suggestion. + autoCorrect={false} + spellCheck={false} // eslint-disable-next-line react/jsx-props-no-spreading {...rest} />