Remove redundant check on requireLocalAccount

This commit is contained in:
Rory Powell 2021-07-13 10:45:13 +01:00
parent 5f5fe92807
commit b47073ae49
1 changed files with 4 additions and 6 deletions

View File

@ -60,12 +60,10 @@ exports.authenticateThirdParty = async function (
// exit early if there is still no user and auto creation is disabled
if (!dbUser && requireLocalAccount) {
if (requireLocalAccount) {
return authError(
done,
"Email does not yet exist. You must set up your local budibase account first."
)
}
return authError(
done,
"Email does not yet exist. You must set up your local budibase account first."
)
}
// first time creation