79302927

Date: 2024-12-23 11:33:26
Score: 1
Natty:
Report link

in the new version of material ui (v6) inputProps prop is deprecated and will be removed in v7. Use slotProps.htmlInput

<TextField
  label='text label'
  slotProps={{
    htmlInput: {
        maxLength: 50,
    },
  }}    
/>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Thiago Lessa