Improve pending account message

This commit is contained in:
Alex Gleason 2020-09-29 23:18:51 -05:00
parent c822ce0c90
commit 2b3d86f390
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -176,7 +176,7 @@ export function register(params) {
if (needsConfirmation) {
return dispatch(snackbar.info('You must confirm your email.'));
} else if (needsApproval) {
return dispatch(snackbar.info('Your account is being reviewed.'));
return dispatch(snackbar.info('Your account is pending review by an admin.'));
} else {
return dispatch(fetchMe());
}