CDCgov/fdns-ui-react

SuperInput is missing the type prop

drewry opened this issue · 0 comments

const { label, type, value, placeholder, onChange } = this.props;

<TextField
  aria-label={label}
  label={label}
  value={value}
  placeholder={placeholder}
  onChange={onChange}
  fullWidth={true}
  margin="normal"
/>

This causes passwords to not show up as hidden like in the Login component