I’m using a TextField
component. How do I disable its spell checking?
Set the spellcheck
attribute to "false"
on the underlying HTML element:
<TextField
slotProps={{
htmlInput: {
spellCheck: "false",
},
}}
/>
I’m using a TextField
component. How do I disable its spell checking?
Set the spellcheck
attribute to "false"
on the underlying HTML element:
<TextField
slotProps={{
htmlInput: {
spellCheck: "false",
},
}}
/>