diff --git a/src/vs/workbench/contrib/void/browser/react/src/void-onboarding/VoidOnboarding.tsx b/src/vs/workbench/contrib/void/browser/react/src/void-onboarding/VoidOnboarding.tsx index 2c30381a..d4d20926 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/void-onboarding/VoidOnboarding.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/void-onboarding/VoidOnboarding.tsx @@ -101,15 +101,14 @@ const FadeIn = ({ children, className, delayMs = 0, ...props }: { children: Reac // content // prev/next - const NextButton = ({ onClick, ...props }: { onClick: () => void } & React.ButtonHTMLAttributes) => { return ( +
+ - + - -
+ + } @@ -552,62 +550,32 @@ const VoidOnboardingContent = () => {
Choose a Provider
{/* Preference Selector */} +
- - - - + }`} + data-tooltip-id='void-tooltip' + data-tooltip-content={`${option.label} providers`} + data-tooltip-place='bottom' + > + {option.label} + + ))}
+ {/* Provider Buttons */}
{
} 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 dd8914fb..9e7419dd 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 @@ -121,7 +121,7 @@ export const AnimatedCheckmarkButton = ({ text, className }: { text?: string, cl return
@@ -146,7 +146,7 @@ const AddButton = ({ disabled, text = 'Add', ...props }: { disabled?: boolean, t return @@ -175,7 +175,7 @@ export const AddModelInputBox = ({ providerName: permanentProviderName, classNam const numModels = settingsState.settingsOfProvider[providerName].models.length if (showCheckmark) { - return + return } if (!isOpen) { diff --git a/src/vs/workbench/contrib/void/common/voidSettingsTypes.ts b/src/vs/workbench/contrib/void/common/voidSettingsTypes.ts index f126cdcf..eb647795 100644 --- a/src/vs/workbench/contrib/void/common/voidSettingsTypes.ts +++ b/src/vs/workbench/contrib/void/common/voidSettingsTypes.ts @@ -70,7 +70,8 @@ export const displayInfoOfProviderName = (providerName: ProviderName): DisplayIn } else if (providerName === 'deepseek') { return { - title: 'DeepSeek.com API', + // title: 'DeepSeek.com API', + title: 'DeepSeek', } } else if (providerName === 'openRouter') { @@ -95,21 +96,25 @@ export const displayInfoOfProviderName = (providerName: ProviderName): DisplayIn } else if (providerName === 'gemini') { return { - title: 'Gemini API', + // title: 'Gemini API', + title: 'Gemini', } } else if (providerName === 'groq') { return { - title: 'Groq.com API', + // title: 'Groq.com API', + title: 'Groq', } } else if (providerName === 'xAI') { return { - title: 'Grok (xAI)', + // title: 'Grok (xAI)', + title: 'xAI', } } else if (providerName === 'mistral') { return { + // title: 'Mistral API', title: 'Mistral API', } }