diff --git a/frontend/app/components/Client/ManageUsers/ManageUsers.js b/frontend/app/components/Client/ManageUsers/ManageUsers.js
index b0dfd32e9..6d291ed1d 100644
--- a/frontend/app/components/Client/ManageUsers/ManageUsers.js
+++ b/frontend/app/components/Client/ManageUsers/ManageUsers.js
@@ -103,7 +103,7 @@ class ManageUsers extends React.PureComponent {
{ !account.smtp &&
- SMTP is not configured. Please follow
these steps to set it up.
+ SMTP is not configured. Please follow (see
here how to set it up). You can still add new users, but you’d have to manually copy then send them the invitation link.
}
diff --git a/frontend/app/components/ForgotPassword/ForgotPassword.js b/frontend/app/components/ForgotPassword/ForgotPassword.js
index 6c4b0d476..d117afd6a 100644
--- a/frontend/app/components/ForgotPassword/ForgotPassword.js
+++ b/frontend/app/components/ForgotPassword/ForgotPassword.js
@@ -22,7 +22,7 @@ const checkDontMatch = (newPassword, newPasswordRepeat) =>
(state, props) => ({
errors: state.getIn([ 'user', 'requestResetPassowrd', 'errors' ]),
resetErrors: state.getIn([ 'user', 'resetPassword', 'errors' ]),
- loading: state.getIn([ 'user', 'requestResetPassowrd', 'loading' ]),
+ loading: state.getIn([ 'user', 'requestResetPassowrd', 'loading' ]) || state.getIn([ 'user', 'resetPassword', 'loading' ]),
params: new URLSearchParams(props.location.search)
}),
{ requestResetPassword, resetPassword },
@@ -111,7 +111,7 @@ export default class ForgotPassword extends React.PureComponent {