feat(popup): add AI Studio master toggle#486
Merged
Merged
Conversation
Closes #368 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Owner
Author
|
@codex review |
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
| }); | ||
|
|
||
| if (!aiStudioEnabled) { | ||
| console.log('[Gemini Voyager] AI Studio features disabled by user'); |
Contributor
There was a problem hiding this comment.
🟡 console.log in production code violates AGENTS.md anti-pattern rule
The new console.log at line 303 violates the AGENTS.md DON'Ts rule: "Console Logs: Remove console.log in production code (use LoggerService for critical info)." A LoggerService exists at src/core/services/LoggerService.ts and should be used instead. Note: the same file has ~12 pre-existing console.log calls following the same [Gemini Voyager] pattern, so this follows an established (but non-compliant) pattern.
Was this helpful? React with 👍 or 👎 to provide feedback.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan
aistudio.google.com→ toggle card should appear at the topgemini.google.com→ toggle card should NOT appear🤖 Generated with Claude Code