Skip to content

Commit

Permalink
Fix extra semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
nathalia45 authored Jul 23, 2021
1 parent 1744c7b commit ad76ec0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/infra/api/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ServerAPI {

rest() {
this.app.use((req, res, next) => {
req.user = user;
req.user = user
next()
})
this.app.use(express.json())
Expand Down Expand Up @@ -82,4 +82,4 @@ class ServerAPI {
}
}

module.exports = new ServerAPI(express())
module.exports = new ServerAPI(express())

0 comments on commit ad76ec0

Please sign in to comment.