Limited return data from api

This commit is contained in:
Ceferino Patino 2022-03-12 18:18:08 -06:00
commit 1f980cfb27

View file

@ -15,9 +15,7 @@ function EditUser() {
firstName: '',
lastName: '',
email: '',
gender: '',
pronouns: '',
ethnicity: '',
});
const [error, setError] = useState('');
@ -107,26 +105,6 @@ function EditUser() {
value={form.email}
sx={{ margin: '1vh 0vh' }}
/>
<TextField
fullWidth
id='outline-required'
label='Ethnicity'
name='ethnicity'
variant='outlined'
onChange={handleChange}
value={form.ethnicity}
sx={{ margin: '1vh 0vh' }}
/>
<TextField
fullWidth
id='outline-required'
label='Gender'
name='gender'
variant='outlined'
onChange={handleChange}
value={form.gender}
sx={{ margin: '1vh 0vh' }}
/>
<TextField
fullWidth
id='outline-required'