diff --git a/web/ASC.Web.Common/src/pages/login/sub-components/register-container.js b/web/ASC.Web.Common/src/pages/login/sub-components/register-container.js index e5875fe5e7..c533668354 100644 --- a/web/ASC.Web.Common/src/pages/login/sub-components/register-container.js +++ b/web/ASC.Web.Common/src/pages/login/sub-components/register-container.js @@ -104,6 +104,12 @@ const RegisterWrapper = (props) => { ); }; +RegisterWrapper.propTypes = { + language: PropTypes.string, + isAuthenticated: PropTypes.bool, + enabledJoin: PropTypes.bool, +}; + function mapStateToProps(state) { const { isAuthenticated, settings } = state.auth; const { enabledJoin } = settings;