Skip to content

Commit

Permalink
fix: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
gauthier-th committed Oct 31, 2024
1 parent 2000c2d commit 23e959a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions server/routes/settings/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,7 @@ settingsRoutes.get('/main', (req, res, next) => {
settingsRoutes.post('/main', async (req, res) => {
const settings = getSettings();

console.log('body', req.body);
console.log('before', settings.main);
settings.main = merge(settings.main, req.body);
console.log('merged', settings.main);
await settings.save();

return res.status(200).json(settings.main);
Expand Down

0 comments on commit 23e959a

Please sign in to comment.