Skip to content

Commit

Permalink
Fix missing req
Browse files Browse the repository at this point in the history
  • Loading branch information
Kry9toN committed Jan 26, 2021
1 parent 2788c97 commit 8bca045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const web = async (client: any) => {
app.use(express.static('./views'))

// Root Route
app.get('/', (res: any) => {
app.get('/', (req: any, res: any) => {
res.render('index.ejs')
})

Expand Down

0 comments on commit 8bca045

Please sign in to comment.