diff --git a/sites/backend/src/models/user.mjs b/sites/backend/src/models/user.mjs index fe1333f5b67..cbe3e29fb38 100644 --- a/sites/backend/src/models/user.mjs +++ b/sites/backend/src/models/user.mjs @@ -314,9 +314,6 @@ UserModel.prototype.passwordSignIn = async function (req) { await this.unguardedUpdate({ password: updatedPasswordField }) } - // Before we return, remove the confirmation so it works only once - await this.Confirmation.unguardedDelete() - return this.isOk() ? this.signInOk() : this.setResponse(401, 'signInFailed') }