Commit b6fcffd6 authored by Ben Wheeler's avatar Ben Wheeler

correct misspelled join flow intl id

parent 0fe4eaed
......@@ -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