Skip to content

Commit

Permalink
fix: correct key for master (#1234)
Browse files Browse the repository at this point in the history
  • Loading branch information
rravelli authored Aug 30, 2024
1 parent 2c4cd9a commit fc2f649
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ export function RegisterFormFields({
disableFuture
required
fullWidth
errors={error?.fields?.promo}
/>
<SelectField
handleChange={(value: RegisterForm['faculty']) =>
Expand All @@ -130,14 +131,15 @@ export function RegisterFormFields({
required
value={formValues?.faculty}
label={t('login.formationFollowed.label')}
errors={error?.fields.faculty}
>
<MenuItem value={'Gen'}>
{t('login.formationFollowed.generalEngineer')}
</MenuItem>
<MenuItem value={'Iti'}>
{t('login.formationFollowed.specialtyEngineer')}
</MenuItem>
<MenuItem value={'Mst'}>{t('login.formationFollowed.master')}</MenuItem>
<MenuItem value={'Mas'}>{t('login.formationFollowed.master')}</MenuItem>
<MenuItem value={'Doc'}>{t('login.formationFollowed.PhD')}</MenuItem>
<MenuItem value={'Bac'}>
{t('login.formationFollowed.bachelor')}
Expand All @@ -154,6 +156,7 @@ export function RegisterFormFields({
}
value={formValues?.path}
label={t('login.specialProgram.label')}
errors={error?.fields?.path}
helperText={t('login.specialProgram.helperText')}
>
<MenuItem value={'Cla'}>{t('login.specialProgram.none')}</MenuItem>
Expand Down

0 comments on commit fc2f649

Please sign in to comment.