bingocode 1.1.200-beta.2 → 1.1.200-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -638,16 +638,10 @@ export class ProviderService {
|
|
|
638
638
|
try {
|
|
639
639
|
const raw = await fs.readFile(settingsPath, "utf-8")
|
|
640
640
|
const settings = JSON.parse(raw)
|
|
641
|
-
//
|
|
642
|
-
//
|
|
643
|
-
//
|
|
644
|
-
settings.claudeCode
|
|
645
|
-
preferredLocation: "panel",
|
|
646
|
-
disableLoginPrompt: true,
|
|
647
|
-
environmentVariables: [
|
|
648
|
-
{ name: "ANTHROPIC_BASE_URL", value: "https://api.anthropic.com" },
|
|
649
|
-
],
|
|
650
|
-
}
|
|
641
|
+
// Remove claudeCode entirely so VS Code falls back to its default
|
|
642
|
+
// — the Claude login screen. Without this key the extension behaves
|
|
643
|
+
// as if bingo was never configured.
|
|
644
|
+
delete settings.claudeCode
|
|
651
645
|
await fs.writeFile(settingsPath, JSON.stringify(settings, null, 4) + '
|
|
652
646
|
')
|
|
653
647
|
} catch {
|