Unverified Commit e367950a authored by Benjamin Wheeler's avatar Benjamin Wheeler Committed by GitHub

Merge pull request #3496 from benjiwheeler/join-flow-correct-intl-id

correct misspelled join flow intl id
parents 4c8fdbe9 b6fcffd6
......@@ -63,7 +63,7 @@ class EmailStep extends React.Component {
onCaptchaError () {
this.props.onRegistrationError(
this.props.intl.formatMessage({
id: 'registation.troubleReload'
id: 'registration.troubleReload'
})
);
}
......
......@@ -151,7 +151,7 @@ describe('EmailStep test', () => {
const formikWrapper = wrapper.dive();
formikWrapper.instance().onCaptchaError();
expect(props.onRegistrationError).toHaveBeenCalledWith('registation.troubleReload');
expect(props.onRegistrationError).toHaveBeenCalledWith('registration.troubleReload');
});
test('Captcha load error calls error function', () => {
......@@ -167,7 +167,7 @@ describe('EmailStep test', () => {
const formikWrapper = wrapper.dive();
formikWrapper.instance().onCaptchaLoad();
expect(props.onRegistrationError).toHaveBeenCalledWith('registation.troubleReload');
expect(props.onRegistrationError).toHaveBeenCalledWith('registration.troubleReload');
});
test('validateEmail test email empty', () => {
......
Markdown is supported
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