From 6aa2409302487b976e975fef860f1e583b6668f9 Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Sat, 21 Jun 2025 14:42:36 -0700 Subject: [PATCH] update --- .../void/browser/react/src/void-settings-tsx/Settings.tsx | 6 +++--- .../contrib/void/electron-main/metricsMainService.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vs/workbench/contrib/void/browser/react/src/void-settings-tsx/Settings.tsx b/src/vs/workbench/contrib/void/browser/react/src/void-settings-tsx/Settings.tsx index 1395b44b..06550730 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/void-settings-tsx/Settings.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/void-settings-tsx/Settings.tsx @@ -1038,7 +1038,7 @@ export const Settings = () => { const navItems: { tab: Tab; label: string }[] = [ { tab: 'models', label: 'Models' }, { tab: 'localProviders', label: 'Local Providers' }, - { tab: 'providers', label: 'Other Providers' }, + { tab: 'providers', label: 'Main Providers' }, { tab: 'featureOptions', label: 'Feature Options' }, { tab: 'general', label: 'General' }, { tab: 'mcp', label: 'MCP' }, @@ -1199,10 +1199,10 @@ export const Settings = () => { - {/* Other Providers section */} + {/* Main Providers section */}
-

Other Providers

+

Main Providers

{`Void can access models from Anthropic, OpenAI, OpenRouter, and more.`}

diff --git a/src/vs/workbench/contrib/void/electron-main/metricsMainService.ts b/src/vs/workbench/contrib/void/electron-main/metricsMainService.ts index 2edd5c84..b6553c47 100644 --- a/src/vs/workbench/contrib/void/electron-main/metricsMainService.ts +++ b/src/vs/workbench/contrib/void/electron-main/metricsMainService.ts @@ -141,7 +141,7 @@ export class MetricsMainService extends Disposable implements IMetricsService { capture: IMetricsService['capture'] = (event, params) => { const capture = { distinctId: this.distinctId, event, properties: params } as const - // console.log('full capture:', capture) + // console.log('full capture:', this.distinctId) this.client.capture(capture) }