summaryrefslogtreecommitdiff
path: root/packages/core/src/code_assist/codeAssist.ts
diff options
context:
space:
mode:
authorTommaso Sciortino <[email protected]>2025-06-30 17:11:54 -0700
committerGitHub <[email protected]>2025-07-01 00:11:54 +0000
commit3587054d32372874a4e067ae050f861ad1cec2b4 (patch)
tree129c31f55176eec8ea8607f1090f63b77c7ab4c5 /packages/core/src/code_assist/codeAssist.ts
parent0ca5c071352b1ab37da3fb44959bb1e88bdd69e3 (diff)
Rename AuthType LOGIN_WITH_GOOGLE_PERSONAL -> LOGIN_WITH_GOOGLE (#2769)
Diffstat (limited to 'packages/core/src/code_assist/codeAssist.ts')
-rw-r--r--packages/core/src/code_assist/codeAssist.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/core/src/code_assist/codeAssist.ts b/packages/core/src/code_assist/codeAssist.ts
index 8a3c6939..c3cb9293 100644
--- a/packages/core/src/code_assist/codeAssist.ts
+++ b/packages/core/src/code_assist/codeAssist.ts
@@ -13,7 +13,7 @@ export async function createCodeAssistContentGenerator(
httpOptions: HttpOptions,
authType: AuthType,
): Promise<ContentGenerator> {
- if (authType === AuthType.LOGIN_WITH_GOOGLE_PERSONAL) {
+ if (authType === AuthType.LOGIN_WITH_GOOGLE) {
const authClient = await getOauthClient();
const projectId = await setupUser(authClient);
return new CodeAssistServer(authClient, projectId, httpOptions);