Skip to content

Commit 74a4044

Browse files
fixing lint error
1 parent c7c5d03 commit 74a4044

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

api/server/routes/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ router.get('/', async function (req, res) {
9696
? [
9797
...DEFAULT_ISSUER_OPTIONS,
9898
...getSolidOpenIdProviders()
99-
.filter((p) =>
100-
!DEFAULT_ISSUER_OPTIONS.some((d) => normalizeIssuer(d.issuer) === p.issuer),
99+
.filter(
100+
(p) => !DEFAULT_ISSUER_OPTIONS.some((d) => normalizeIssuer(d.issuer) === p.issuer),
101101
)
102102
.map((p) => ({ issuer: p.issuer, label: p.label })),
103103
]

0 commit comments

Comments
 (0)