Skip to content
Snippets Groups Projects
Commit aeda98c9 authored by Bogdan Cochior's avatar Bogdan Cochior
Browse files

fix: fix add account issues

parent 4aed4b1b
No related branches found
No related tags found
1 merge request!43Sprint #19
......@@ -227,6 +227,7 @@ const sendAuthorsEmail = async ({
return {
...author,
isConfirmed: user.isConfirmed,
passwordResetToken: user.passwordResetToken,
...getEmailCopy({
customId,
emailType: author.isSubmitting
......
......@@ -27,6 +27,7 @@ const SignUpInvitation = ({
initialValues={initialValues}
journal={journal}
onSubmit={nextStep}
type={type}
/>
)}
{step === 1 && (
......
......@@ -76,7 +76,7 @@ export default compose(
return {
onSubmitText: 'CONFIRM',
onSubmit: confirmInvitation,
onBack: () => history.push('/'),
onBack: prevStep,
}
}
},
......
......@@ -32,7 +32,7 @@ const AgreeCheckbox = ({ value, onChange }) => (
</Row>
)
const Step0 = ({ journal, handleSubmit, initialValues, error }) =>
const Step0 = ({ journal, handleSubmit, initialValues, error, type }) =>
!isUndefined(initialValues) ? (
<Fragment>
<Row mb={2} mt={3}>
......@@ -55,7 +55,7 @@ const Step0 = ({ journal, handleSubmit, initialValues, error }) =>
</Row>
<Row mb={2}>
<Item mr={1} vertical>
<ItemOverrideAlert mr={1} vertical>
<Label required>Title</Label>
<ValidatedField
component={input => (
......@@ -68,7 +68,7 @@ const Step0 = ({ journal, handleSubmit, initialValues, error }) =>
name="title"
validate={[requiredValidator]}
/>
</Item>
</ItemOverrideAlert>
<ItemOverrideAlert ml={1} vertical>
<Label required>Country</Label>
<ValidatedField
......@@ -116,7 +116,7 @@ const Step0 = ({ journal, handleSubmit, initialValues, error }) =>
</Row>
<Button mt={4} onClick={handleSubmit}>
PROCEED TO SET EMAIL AND PASSWORD
PROCEED TO SET {type === 'signup' && 'EMAIL AND'} PASSWORD
</Button>
<Row mt={3}>
......
......@@ -20,6 +20,7 @@ export default {
color: ${th('colorText')};
line-height: ${th('gridUnit')};
padding: 0 ${th('gridUnit')};
font-family: ${th('fontWriting')};
`,
Opener: css`
border-color: ${props =>
......
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