So, I have a Material UI TextField control and currently is changing it's background color after selecting a text from the sugestions.
<TextField 
  id="username"
  name="username"
  size="small"
  variant="outlined"
  className={classes.inputFields}
  value={ username || "" }
  onChange={event => setUsername(event.target.value)}
  InputProps={{
    className: classes.multilineColor
  }}
  fullWidth/>
How can I keep my current bg color?
 
    