Browse Source

fix lint error

Mudana-grune 2 years ago
parent
commit
280cfd5655
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/app/src/server/routes/apiv3/security-setting.js

+ 1 - 1
apps/app/src/server/routes/apiv3/security-setting.js

@@ -509,7 +509,7 @@ module.exports = (crowi) => {
 
       // Check external auth methods
       const externalAuthTypes = Object.values(GrowiExternalAuthProviderType);
-      await Promise.all(externalAuthTypes.map(async (strategy) => {
+      await Promise.all(externalAuthTypes.map(async(strategy) => {
         await checkAndAddActiveAuthMethodWithAdmin(strategy, activeAuthMethodsWithAdmin);
       }));