diff --git a/backend/src/graphql/resolver/util/authenticateGmsUserPlayground.ts b/backend/src/graphql/resolver/util/authenticateGmsUserPlayground.ts index 53c752b5d..d1c1e6daf 100644 --- a/backend/src/graphql/resolver/util/authenticateGmsUserPlayground.ts +++ b/backend/src/graphql/resolver/util/authenticateGmsUserPlayground.ts @@ -11,6 +11,7 @@ export async function authenticateGmsUserPlayground( const result = new GmsUserAuthenticationResult() result.url = CONFIG.GMS_URL.concat('/playground') result.token = await verifyAuthToken(dbUser.communityUuid, token) + // eslint-disable-next-line no-console console.log('GmsUserAuthenticationResult:', result) return result }