Skip to content

Commit

Permalink
Merge pull request #31 from seanbirchall/development
Browse files Browse the repository at this point in the history
test
  • Loading branch information
seanbirchall authored Nov 27, 2024
2 parents c100ca2 + 6c4beab commit 9670670
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');
console.log('no auth code found');
return res.status(400).send('Authorization code is missing');
}

Expand Down

0 comments on commit 9670670

Please sign in to comment.