fix: InputProps is deprecated

This commit is contained in:
huzibaca 2024-11-13 00:30:30 +08:00
parent c37f22dc65
commit 176620e3bb
No known key found for this signature in database
GPG Key ID: D4364EE4851DC302

View File

@ -165,7 +165,8 @@ export const BackupConfigViewer = memo(
spellCheck="false" spellCheck="false"
inputRef={passwordRef} inputRef={passwordRef}
{...register("password")} {...register("password")}
InputProps={{ slotProps={{
input: {
endAdornment: ( endAdornment: (
<InputAdornment position="end"> <InputAdornment position="end">
<IconButton <IconButton
@ -176,6 +177,7 @@ export const BackupConfigViewer = memo(
</IconButton> </IconButton>
</InputAdornment> </InputAdornment>
), ),
},
}} }}
/> />
</Grid2> </Grid2>