From 48064990403fd2b3f738f98fb9319215f75671a7 Mon Sep 17 00:00:00 2001 From: Balu Babu Date: Thu, 13 Apr 2023 16:21:37 +0530 Subject: [PATCH] fix: fixed incorrect GOOGLE_SCOPE env value in .env.example file (#2983) --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index f8a0b7141..21e367dcf 100644 --- a/.env.example +++ b/.env.example @@ -18,7 +18,7 @@ WHITELISTED_ORIGINS = "http://localhost:3170,http://localhost:3000,http://localh GOOGLE_CLIENT_ID="************************************************" GOOGLE_CLIENT_SECRET="************************************************" GOOGLE_CALLBACK_URL="http://localhost:3170/v1/auth/google/callback" -GOOGLE_SCOPE="['email', 'profile']," +GOOGLE_SCOPE="email,profile" # Github Auth Config GITHUB_CLIENT_ID="************************************************"