[#206] removed autocomplete suggestions

This commit is contained in:
Camille Moussu
2025-11-06 17:09:50 +01:00
committed by Benoit TELLIER
parent c05dac3f08
commit 0647be551f
+3 -2
View File
@@ -64,6 +64,7 @@ export function PeopleSearch({
freeSolo={freeSolo} freeSolo={freeSolo}
multiple multiple
options={options} options={options}
autoComplete={false}
open={!!query} open={!!query}
disabled={disabled} disabled={disabled}
loading={loading} loading={loading}
@@ -108,7 +109,7 @@ export function PeopleSearch({
slotProps={{ slotProps={{
input: { input: {
...params.InputProps, ...params.InputProps,
autoComplete: "new-password", autoComplete: "off",
startAdornment: ( startAdornment: (
<> <>
<PeopleOutlineOutlinedIcon <PeopleOutlineOutlinedIcon
@@ -129,7 +130,7 @@ export function PeopleSearch({
}} }}
inputProps={{ inputProps={{
...params.inputProps, ...params.inputProps,
autoComplete: "new-password", autoComplete: "off",
}} }}
/> />
)} )}