feat(settings): add do not check for updates (#246)

Co-authored-by: Gregory Schier <gschier1990@gmail.com>
This commit is contained in:
Gabriel Oliveira
2025-08-08 17:25:55 -03:00
committed by GitHub
parent 5f99b7df05
commit f8b0510d08
6 changed files with 29 additions and 5 deletions

View File

@@ -49,6 +49,21 @@ export function SettingsGeneral() {
onClick={() => checkForUpdates.mutateAsync()}
/>
</div>
<Select
name="autoupdate"
value={settings.autoupdate ? 'auto' : 'manual'}
label="Update Behavior"
labelPosition="left"
size="sm"
labelClassName="w-[14rem]"
onChange={(v) => patchModel(settings, { autoupdate: v === 'auto' })}
options={[
{ label: 'Automatic', value: 'auto' },
{ label: 'Manual', value: 'manual' },
]}
/>
<Select
name="switchWorkspaceBehavior"
label="Workspace Window Behavior"