diff --git a/server/src/routes/auth.ts b/server/src/routes/auth.ts index 0c8034b3..31ec6394 100644 --- a/server/src/routes/auth.ts +++ b/server/src/routes/auth.ts @@ -189,7 +189,7 @@ router.get('/google', (req, res) => { // Step 2: Handle Google OAuth callback router.get('/google/callback', async (req, res) => { const { code } = req.query; - + try { // Get access and refresh tokens if (typeof code !== 'string') {