Skip to content

Commit

Permalink
fix(schema): emails is an array
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavovalverde committed Jul 23, 2023
1 parent 6e9ea7c commit a4ddc6c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pages/register/stepper/step3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,7 @@ export default function Step3({ handleNext, infoCedula }: any) {
method,
password: form.password,
traits: {
emails: {
form.email,
},
emails: [form.email],
cedula: citizen.id,
shortName: {
firstName: citizen.firstName,
Expand Down

0 comments on commit a4ddc6c

Please sign in to comment.