fix lints

This commit is contained in:
guillaume 2019-04-24 12:35:00 +02:00
parent 8b3601248d
commit 259ff3436f

View file

@ -113,11 +113,11 @@ async function authentication(event, instance) {
const match = $('#at-field-username_and_email').val();
const password = $('#at-field-password').val();
if (!match || !password) return;
if (!match || !password) return undefined;
const result = await getAuthenticationMethod(instance.currentSetting.get(), match);
if (result === 'password') return;
if (result === 'password') return undefined;
// Stop submit #at-pwd-form
event.preventDefault();
@ -139,7 +139,7 @@ async function authentication(event, instance) {
});
default:
return;
return undefined;
}
}