Skip to content
Snippets Groups Projects
Commit fc7248ef authored by Iosif Boanca's avatar Iosif Boanca
Browse files

fix(sign-up invitation): added country field, as selected value when creating...

fix(sign-up invitation): added country field, as selected value when creating a new account using admin
parent c9a4bf06
No related branches found
No related tags found
2 merge requests!110Sprint 21 Features,!76fix(sign-up invitation): added country field, as selected value when creating a…
......@@ -25,6 +25,7 @@ module.exports = {
lastName: user.lastName,
affiliation: user.affiliation,
title: user.title,
country: user.country,
}),
ctaText: 'CONFIRM ACCOUNT',
signatureName: 'Hindawi',
......
......@@ -24,6 +24,7 @@ export default compose(
const lastName = params.get('lastName') || ''
const firstName = params.get('firstName') || ''
const affiliation = params.get('affiliation') || ''
const country = params.get('country') || ''
return {
initialValues: {
......@@ -33,6 +34,7 @@ export default compose(
lastName,
firstName,
affiliation,
country,
},
}
}),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment