diff --git a/service/auth/index.js b/service/auth/index.js index 2d9fc9d..2f74ef8 100644 --- a/service/auth/index.js +++ b/service/auth/index.js @@ -9,7 +9,7 @@ app.use(cookieParser()); app.get('/callback', async (req, res) => { const { code } = req.query; // Get the authorization code from the redirect if (!code) { - console.log('no auth code found'); + console.log('no auth code'); return res.status(400).send('Authorization code is missing'); }