Posts

Showing posts from April, 2023

How to prevent showing the selected options again in the Autocomplete suggestions ? (Material UI/React)

Image
  How to prevent showing the selected options again in the Autocomplete suggestions ? Issue, Ans. Below the filterOptions function filters the options based on two criteria: The option is not a duplicate of a selected option The option label matches the input value The function returns only the options that meet both criteria, and these are the options that are shown in the Autocomplete suggestions. const options = users ?. map (( user ) => ({         label : ` ${ user ?. firstName } ${ user ?. lastName } - ${ user ?. email } ` ,         value : user ?. email ,         // avatar: <Avatar alt={user?.firstName} src={API_BASE_URL + user?.avatar} />     })) ?? [];  { ! formik . values . alumni && < Box >       < Autocomplete       multiple         id = "tags-outlined"         options = { options }   ...