bingocode 1.1.200-beta.10 → 1.1.200-beta.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bingocode",
3
- "version": "1.1.200-beta.10",
3
+ "version": "1.1.200-beta.12",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -6,7 +6,6 @@ import {
6
6
  } from '../../services/analytics/index.js'
7
7
  import { logError } from '../../utils/log.js'
8
8
  import { saveBrainMode } from '../../utils/sessionStorage.js'
9
- import { updateSettingsForSource } from '../../utils/settings/settings.js'
10
9
 
11
10
  export async function call(
12
11
  onDone: LocalJSXCommandOnDone,
@@ -20,12 +19,10 @@ export async function call(
20
19
  if (enable) {
21
20
  context.setAppState(prev => ({ ...prev, brainMode: true }))
22
21
  saveBrainMode(true)
23
- updateSettingsForSource('userSettings', { brainMode: true })
24
22
  onDone('✓ Brain Mode enabled.', { display: 'system' })
25
23
  } else {
26
24
  context.setAppState(prev => ({ ...prev, brainMode: false }))
27
25
  saveBrainMode(false)
28
- updateSettingsForSource('userSettings', { brainMode: false })
29
26
  onDone('✗ Brain Mode disabled — back to full execution.', { display: 'system' })
30
27
  }
31
28