LoginForm: make it more clear that people should use usernames, not emails.

master
Tom Hacohen 2020-10-27 16:25:44 +02:00
parent 022d4ea2e2
commit 19444a38ba
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export default function LoginForm(props: PropsType) {
if (!username) {
errors.errorEmail = fieldRequired;
} else if (username.includes("@")) {
errors.errorEmail = "EteSync 2.0 account required (this looks like a 1.0 account).";
errors.errorEmail = "Please use your username (not email)";
}
if (!password) {
errors.errorPassword = fieldRequired;