[#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}
multiple
options={options}
autoComplete={false}
open={!!query}
disabled={disabled}
loading={loading}
@@ -108,7 +109,7 @@ export function PeopleSearch({
slotProps={{
input: {
...params.InputProps,
autoComplete: "new-password",
autoComplete: "off",
startAdornment: (
<>
<PeopleOutlineOutlinedIcon
@@ -129,7 +130,7 @@ export function PeopleSearch({
}}
inputProps={{
...params.inputProps,
autoComplete: "new-password",
autoComplete: "off",
}}
/>
)}