From a3c733f82e9fa7a10358a3426fc34ec480eec7b3 Mon Sep 17 00:00:00 2001 From: Max Leiter Date: Tue, 19 Apr 2022 22:15:40 -0700 Subject: [PATCH] server: remove unnecessary console.log --- server/src/routes/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {