server: remove unnecessary console.log

This commit is contained in:
Max Leiter 2022-04-19 22:15:40 -07:00
parent 519b6cdc71
commit a3c733f82e
No known key found for this signature in database
GPG key ID: A3512F2F2F17EBDA

View file

@ -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) {