Skip to content

Commit f229b28

Browse files
committed
chore: fix formatting
1 parent 169e3e2 commit f229b28

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/service/routes/auth.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ router.get('/config', (req, res) => {
7272
// enabled username /password auth method
7373
usernamePasswordMethod: usernamePasswordMethod,
7474
// other enabled auth methods
75-
otherMethods: getAuthMethods().map((am) => am.type.toLowerCase()).filter((authType) => authType !== usernamePasswordMethod),
75+
otherMethods: getAuthMethods()
76+
.map((am) => am.type.toLowerCase())
77+
.filter((authType) => authType !== usernamePasswordMethod),
7678
});
7779
});
7880

0 commit comments

Comments
 (0)