mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-01 20:23:36 +00:00
- Deleted the AI profile management feature, including all associated views, hooks, and types. - Updated settings and navigation components to remove references to AI profiles. - Adjusted local storage and settings synchronization logic to reflect the removal of AI profiles. - Cleaned up tests and utility functions that were dependent on the AI profile feature. These changes streamline the application by eliminating unused functionality, improving maintainability and reducing complexity.
24 lines
733 B
TypeScript
24 lines
733 B
TypeScript
import { darkThemes, lightThemes } from '@/config/theme-options';
|
|
|
|
export const PROJECT_DARK_THEMES = darkThemes.map((opt) => ({
|
|
value: opt.value,
|
|
label: opt.label,
|
|
icon: opt.Icon,
|
|
color: opt.color,
|
|
}));
|
|
|
|
export const PROJECT_LIGHT_THEMES = lightThemes.map((opt) => ({
|
|
value: opt.value,
|
|
label: opt.label,
|
|
icon: opt.Icon,
|
|
color: opt.color,
|
|
}));
|
|
|
|
export const SIDEBAR_FEATURE_FLAGS = {
|
|
hideTerminal: import.meta.env.VITE_HIDE_TERMINAL === 'true',
|
|
hideWiki: import.meta.env.VITE_HIDE_WIKI === 'true',
|
|
hideRunningAgents: import.meta.env.VITE_HIDE_RUNNING_AGENTS === 'true',
|
|
hideContext: import.meta.env.VITE_HIDE_CONTEXT === 'true',
|
|
hideSpecEditor: import.meta.env.VITE_HIDE_SPEC_EDITOR === 'true',
|
|
} as const;
|