Skip to content

Commit

Permalink
Merge pull request #32 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 9670670 + 2691596 commit d018a78
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 d018a78

Please sign in to comment.