summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-04-19 22:46:53 +0200
committerRory& <root@rory.gay>2026-04-19 22:46:53 +0200
commit609e74b61422df0afa7c27e7c6661c5d2a84c06a (patch)
treed2928bb64592145be883bb1318b732841d11c2ae /src
parenteslint: yoda (diff)
downloadserver-ts-609e74b61422df0afa7c27e7c6661c5d2a84c06a.tar.xz
eslint: reapply after rebasing on #1631
Diffstat (limited to 'src')
-rw-r--r--src/api/routes/users/#user_id/profile.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/users/#user_id/profile.ts b/src/api/routes/users/#user_id/profile.ts

index c9a9bb92..372f8927 100644 --- a/src/api/routes/users/#user_id/profile.ts +++ b/src/api/routes/users/#user_id/profile.ts
@@ -129,7 +129,7 @@ router.get("/", route({ responses: { 200: { body: "UserProfileResponse" } } }), user.connected_accounts .filter((x) => x.visibility != 0) - .map((x) => { + .forEach((x) => { const publicUserConnection = { id: x.id, type: x.type,