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,
|