diff --git a/server/src/routes/user.ts b/server/src/routes/user.ts index 29ea6c28..e4226a5f 100644 --- a/server/src/routes/user.ts +++ b/server/src/routes/user.ts @@ -54,7 +54,7 @@ user.put("/profile", if (!user) { return error() } - console.log(req.body) + const { displayName, bio, email } = req.body const toUpdate = {} as any if (displayName) {