diff --git a/src/components/settings-dialog.tsx b/src/components/settings-dialog.tsx index 8ce1bf8..df4c181 100644 --- a/src/components/settings-dialog.tsx +++ b/src/components/settings-dialog.tsx @@ -25,6 +25,7 @@ import { BreadcrumbPage, BreadcrumbSeparator, } from "@/components/ui/breadcrumb"; +import AppearanceSettings from "./appearance-settings"; import { ScrollArea } from "@/components/ui/scroll-area"; import { useSettingNavStore } from "@/store/useSettingNavStore"; import { CodeXml, Globe, Paintbrush, Settings } from "lucide-react"; @@ -58,7 +59,7 @@ export function SettingsDialog({ open, onClose }: SettingsDialogProps) { - + {data.nav.map((item) => (
- {Array.from({ length: 10 }).map((_, i) => ( -
- ))} + {activeNav === "Appearance" ? ( + + ) : ( + Array.from({ length: 10 }).map((_, i) => ( +
+ )) + )}