I am trying to disable the autocomplete on the web using TextInput from react-native-paper 3.10.1
<TextInput
name="city"
textContentType="addressCity"
autoComplete="off"
mode="outlined"
/>
The autoComplete="off" is replaced with autocomplete="noop" in the rendered HTML, which cause the auto complete not to be disabled.

From where does the noop come from and how can I disable the autocomplete?