Skip to content

Commit

Permalink
attempt#2 to release 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rtang03 committed Sep 4, 2020
1 parent da73c95 commit 0f0d65c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui-control/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ app.prepare().then(() => {
app.get('/islive', (_, res) => res.status(204).end());
app.get('*', csrfProtection, (req, res) => handle(req, res));

app.listen(port, (error) => {
app.listen(port, () => {
console.log(`🚀 Server listening at http://localhost:${port}`);
logger.info(`🚀 Server listening at http://localhost:${port}`);
});
Expand Down

0 comments on commit 0f0d65c

Please sign in to comment.