diff --git a/client/coral-framework/hocs/withForgotPassword.js b/client/coral-framework/hocs/withForgotPassword.js index fb8eb434c..85af3a6f9 100644 --- a/client/coral-framework/hocs/withForgotPassword.js +++ b/client/coral-framework/hocs/withForgotPassword.js @@ -4,7 +4,11 @@ import PropTypes from 'prop-types'; import { translateError } from '../utils'; /** - * WithForgotPassword provides properties `forgotPasssword`, `loading`, `errorMessage`, `success`. + * WithForgotPassword provides properties + * `forgotPasssword`, + * `loading`, + * `errorMessage`, + * `success`. */ export default hoistStatics(WrappedComponent => { class WithForgotPassword extends React.Component { diff --git a/client/coral-framework/hocs/withResendEmailConfirmation.js b/client/coral-framework/hocs/withResendEmailConfirmation.js index 6b5f8375d..80182ca5c 100644 --- a/client/coral-framework/hocs/withResendEmailConfirmation.js +++ b/client/coral-framework/hocs/withResendEmailConfirmation.js @@ -4,7 +4,11 @@ import PropTypes from 'prop-types'; import { translateError } from '../utils'; /** - * WithResendEmailConfirmaton provides properties `forgotPasssword`, `loading`, `errorMessage`, `success`. + * WithResendEmailConfirmaton provides properties + * `resendEmailConfirmation`, + * `loading`, + * `errorMessage`, + * `success`. */ export default hoistStatics(WrappedComponent => { class WithResendEmailConfirmaton extends React.Component { diff --git a/client/coral-framework/hocs/withSetUsername.js b/client/coral-framework/hocs/withSetUsername.js index 459b8f5b1..b0c8ea1eb 100644 --- a/client/coral-framework/hocs/withSetUsername.js +++ b/client/coral-framework/hocs/withSetUsername.js @@ -19,7 +19,7 @@ import get from 'lodash/get'; * `errorMessage`, * `requireEmailVerification`, * `success`, - * `validate`. + * `validateUsername`. */ const withSetUsername = hoistStatics(WrappedComponent => { class WithSetUsername extends React.Component { diff --git a/client/coral-framework/hocs/withSignUp.js b/client/coral-framework/hocs/withSignUp.js index ea0585dce..860e4b7c1 100644 --- a/client/coral-framework/hocs/withSignUp.js +++ b/client/coral-framework/hocs/withSignUp.js @@ -23,7 +23,13 @@ const QUERY = gql` export const withSettingsQuery = withQuery(QUERY); /** - * withSignUp provides properties `signUp`, `loading`, `errorMessage`, `requireEmailVerification`, 'success', 'validate'. + * withSignUp provides properties + * `signUp`, + * `loading`, + * `errorMessage`, + * `requireEmailVerification`, + * `success`, + * `validate`. */ const withSignUp = hoistStatics(WrappedComponent => { class WithSignUp extends React.Component {