Skip to content

Commit be68b09

Browse files
authored
[docs][material-ui] Fix incorrect slotProp name in the TextField deprecation note. (mui#43985)
1 parent 95fd6b5 commit be68b09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/data/material/migration/migrating-from-deprecated-apis/migrating-from-deprecated-apis.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1539,13 +1539,13 @@ All of the TextField's slot props (`*Props`) props were deprecated in favor of e
15391539
- inputProps={CustomHtmlInputProps}
15401540
- SelectProps={CustomSelectProps}
15411541
- InputLabelProps={CustomInputLabelProps}
1542-
- FormHelperTextProps={CustomFormHelperProps}
1542+
- FormHelperTextProps={CustomFormHelperTextProps}
15431543
+ slotProps={{
15441544
+ input: CustomInputProps
15451545
+ htmlInput: CustomHtmlInputProps
15461546
+ select: CustomSelectProps
15471547
+ inputLabel: CustomInputLabelProps
1548-
+ formHelper: CustomFormHelperProps
1548+
+ formHelperText: CustomFormHelperTextProps
15491549
+ }}
15501550
/>
15511551
```

0 commit comments

Comments
 (0)