Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbirchall committed Nov 27, 2024
1 parent 6c4beab commit 2691596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/auth/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}

Expand Down

0 comments on commit 2691596

Please sign in to comment.