diff --git a/apps/desktop/src/app/settings/appearance-settings.tsx b/apps/desktop/src/app/settings/appearance-settings.tsx index d60b119457..b249f0dff7 100644 --- a/apps/desktop/src/app/settings/appearance-settings.tsx +++ b/apps/desktop/src/app/settings/appearance-settings.tsx @@ -9,8 +9,7 @@ import { useTheme } from '@/themes/context' import { BUILTIN_THEMES } from '@/themes/presets' import { MODE_OPTIONS } from './constants' -import { prettyName } from './helpers' -import { Pill, SettingsContent } from './primitives' +import { SettingsContent } from './primitives' function ThemePreview({ name }: { name: string }) { const t = BUILTIN_THEMES[name] @@ -52,16 +51,16 @@ function ThemePreview({ name }: { name: string }) { ) } -function SectionHead({ title, description, pill }: { title: string; description: string; pill?: ReactNode }) { +function SectionHead({ title, description, control }: { title: string; description: string; control?: ReactNode }) { return ( -