From 79c647d486a5ef3cf9eb68f23000525e8d2c4a91 Mon Sep 17 00:00:00 2001 From: Tommaso Sciortino Date: Wed, 25 Jun 2025 15:38:18 -0700 Subject: Merge "Login with Google Workspace" auth option into "Login with Google" (#1574) Co-authored-by: Scott Densmore --- packages/core/src/code_assist/codeAssist.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'packages/core/src/code_assist/codeAssist.ts') diff --git a/packages/core/src/code_assist/codeAssist.ts b/packages/core/src/code_assist/codeAssist.ts index 1ceb818b..8a3c6939 100644 --- a/packages/core/src/code_assist/codeAssist.ts +++ b/packages/core/src/code_assist/codeAssist.ts @@ -13,10 +13,7 @@ export async function createCodeAssistContentGenerator( httpOptions: HttpOptions, authType: AuthType, ): Promise { - if ( - authType === AuthType.LOGIN_WITH_GOOGLE_ENTERPRISE || - authType === AuthType.LOGIN_WITH_GOOGLE_PERSONAL - ) { + if (authType === AuthType.LOGIN_WITH_GOOGLE_PERSONAL) { const authClient = await getOauthClient(); const projectId = await setupUser(authClient); return new CodeAssistServer(authClient, projectId, httpOptions); -- cgit v1.2.3