From fee31bff7104b37f3d9c85309beb127b7f6441fd Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 16 Oct 2024 20:14:00 +0530 Subject: [PATCH] chore: lint --- server/src/routes/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') {