diff --git a/packages/core/admin/ee/server/utils/sso-lock.js b/packages/core/admin/ee/server/utils/sso-lock.js index c3b42b582b..b57bb2a16c 100644 --- a/packages/core/admin/ee/server/utils/sso-lock.js +++ b/packages/core/admin/ee/server/utils/sso-lock.js @@ -5,7 +5,6 @@ const { isEmpty } = require('lodash/fp'); const isSsoLocked = async (user) => { if (!features.isEnabled('sso') || !user) { - // TODO: we should be calling strapi.features.isEnabled("sso") but that's EE code. Should we load it dynamically when EE is enabled? Or add EE code to override this strategy? return false; }