Skip to content

Commit e779ae7

Browse files
committed
fix(google-auth): enable google antigravity auth by default (#66)
Make google_auth enabled by default (true) while still allowing users to disable it by setting google_auth: false. 🤖 Generated with assistance of OhMyOpenCode (https://github.com/code-yeongyu/oh-my-opencode)
1 parent 8226357 commit e779ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ const OhMyOpenCodePlugin: Plugin = async (ctx) => {
263263
const callOmoAgent = createCallOmoAgent(ctx, backgroundManager);
264264
const lookAt = createLookAt(ctx);
265265

266-
const googleAuthHooks = pluginConfig.google_auth
266+
const googleAuthHooks = pluginConfig.google_auth !== false
267267
? await createGoogleAntigravityAuthPlugin(ctx)
268268
: null;
269269

0 commit comments

Comments
 (0)