diff --git a/src/vs/workbench/contrib/void/browser/react/src/util/inputs.tsx b/src/vs/workbench/contrib/void/browser/react/src/util/inputs.tsx
index 1ae9719d..a4df3066 100644
--- a/src/vs/workbench/contrib/void/browser/react/src/util/inputs.tsx
+++ b/src/vs/workbench/contrib/void/browser/react/src/util/inputs.tsx
@@ -959,9 +959,9 @@ export const BlockCode = ({ initValue, language, maxHeight, showScrollbars }: Bl
}
-export const VoidButtonBgDarken = ({ children, disabled, onClick }: { children: React.ReactNode; disabled?: boolean; onClick: () => void }) => {
+export const VoidButtonBgDarken = ({ children, disabled, onClick, className }: { children: React.ReactNode; disabled?: boolean; onClick: () => void; className?: string }) => {
return {children}
}
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 860ee06b..29bc9106 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
@@ -19,6 +19,7 @@ import { WarningBox } from './WarningBox.js'
import { os } from '../../../../common/helpers/systemInfo.js'
import { IconLoading, IconX } from '../sidebar-tsx/SidebarChat.js'
import { getModelCapabilities, getProviderCapabilities, ollamaRecommendedModels, VoidStaticModelInfo } from '../../../../common/modelCapabilities.js'
+import VoidImage from './VoidImage.js'
const ButtonLeftTextRightOption = ({ text, leftButton }: { text: string, leftButton?: React.ReactNode }) => {
@@ -544,7 +545,10 @@ export const FeaturesTab = () => {
{/*
{`Instructions:`} */}
{/* {`Void can access any model that you host locally. We automatically detect your local models by default.`} */}
{`Void can access any model that you host locally. We automatically detect your local models by default.`}
- {ollamaSetupInstructions}
+
+
+ {ollamaSetupInstructions}
+
@@ -805,7 +809,7 @@ const transferTheseFilesOfOS = (os: 'mac' | 'windows' | 'linux' | null, fromEdit
}
-const OneClickSwitchButton = ({ fromEditor = 'VS Code' }: { fromEditor?: TransferEditorType }) => {
+const OneClickSwitchButton = ({ fromEditor = 'VS Code', className = '' }: { fromEditor?: TransferEditorType, className?: string }) => {
const accessor = useAccessor()
const fileService = accessor.get('IFileService')
@@ -866,7 +870,7 @@ const OneClickSwitchButton = ({ fromEditor = 'VS Code' }: { fromEditor?: Transfe
}
return <>
-
+
{transferState.type === 'done' ? `Transfer from ${fromEditor}`
: transferState.type === 'loading' ? Transferring
: transferState.type === 'justfinished' ?
@@ -889,10 +893,10 @@ const GeneralTab = () => {
One-Click Switch
{`Transfer your settings from another editor to Void in one click.`}
-
@@ -903,29 +907,29 @@ const GeneralTab = () => {
{`IDE settings, keyboard settings, and theme customization.`}
- { commandService.executeCommand('workbench.action.openSettings') }}>
+ { commandService.executeCommand('workbench.action.openSettings') }}>
General Settings
- { commandService.executeCommand('workbench.action.openGlobalKeybindings') }}>
+ { commandService.executeCommand('workbench.action.openGlobalKeybindings') }}>
Keyboard Settings
- { commandService.executeCommand('workbench.action.selectTheme') }}>
+ { commandService.executeCommand('workbench.action.selectTheme') }}>
Theme Settings
- { nativeHostService.showItemInFolder(environmentService.logsHome.fsPath) }}>
+ { nativeHostService.showItemInFolder(environmentService.logsHome.fsPath) }}>
Open Logs
-
+
AI Instructions
{`Instructions to include on all AI requests.`}
@@ -943,7 +947,7 @@ export const Settings = () => {
const [tab, setTab] = useState
('models')
- const deleteme = true
+ const deleteme = false
if (deleteme) {
return
@@ -964,10 +968,10 @@ export const Settings = () => {
{/* tabs */}
- { setTab('models') }}
>Models
- { setTab('general') }}
>General
@@ -1100,7 +1104,7 @@ const PreviousButton = ({ onClick, ...props }: { onClick: () => void } & React.B
}
-const ollamaSetupInstructions =
+const ollamaSetupInstructions =
@@ -1420,12 +1424,12 @@ const VoidOnboarding = () => {
// TODO add a description next to the skip button saying (you can always restart the onboarding in Settings)
const contentOfIdx: { [pageIndex: number]: React.ReactNode } = {
0:
-
- Welcome to Void
+
+ Welcome to Void
+
- Image
-
+