@@ -32,7 +32,7 @@ import {
3232import { BrowseMarketplaceButton , CollapsibleCard } from "../../components/shared" ;
3333import { ContextFileItem , ConfigFileItem } from "../../components/ContextFileItem" ;
3434import { useAtom } from "jotai" ;
35- import { routerTestStatusAtom , routerTestMessageAtom , featureTabsLayoutAtom , type FeatureTabsLayout } from "../../store" ;
35+ import { routerTestStatusAtom , routerTestMessageAtom } from "../../store" ;
3636import type { ClaudeSettings , ContextFile } from "../../types" ;
3737import { ClaudeCodeVersionSection } from "./ClaudeCodeVersionSection" ;
3838import { trackProviderEvent , isAnalyticsEnabled , setAnalyticsEnabled } from "../../lib/analytics" ;
@@ -78,7 +78,6 @@ export function SettingsView({
7878 const [ applyHint , setApplyHint ] = useState < Record < string , string > > ( { } ) ;
7979 const [ testStatus , setTestStatus ] = useAtom ( routerTestStatusAtom ) ;
8080 const [ testMessage , setTestMessage ] = useAtom ( routerTestMessageAtom ) ;
81- const [ featureTabsLayout , setFeatureTabsLayout ] = useAtom ( featureTabsLayoutAtom ) ;
8281 const [ testMissingKeys , setTestMissingKeys ] = useState < Record < string , string [ ] > > ( { } ) ;
8382 const [ testMissingValues , setTestMissingValues ] = useState < Record < string , Record < string , string > > > ( { } ) ;
8483 const [ editingEnvKey , setEditingEnvKey ] = useState < string | null > ( null ) ;
@@ -1226,44 +1225,6 @@ export function SettingsView({
12261225 </ CollapsibleCard >
12271226 ) }
12281227
1229- < CollapsibleCard
1230- storageKey = "lovcode:settings:appearanceOpen"
1231- title = "Appearance"
1232- subtitle = "Customize the app layout and display"
1233- bodyClassName = "p-3 space-y-3"
1234- >
1235- < div className = "flex items-center justify-between" >
1236- < div >
1237- < p className = "text-xs font-medium text-ink" > Project Tabs Layout</ p >
1238- < p className = "text-[10px] text-muted-foreground" >
1239- Choose how project and feature tabs are displayed
1240- </ p >
1241- </ div >
1242- < div className = "flex gap-1 p-0.5 bg-muted rounded-lg" >
1243- < button
1244- onClick = { ( ) => setFeatureTabsLayout ( "horizontal" ) }
1245- className = { `px-3 py-1.5 text-xs rounded-md transition-colors ${
1246- featureTabsLayout === "horizontal"
1247- ? "bg-background text-ink shadow-sm"
1248- : "text-muted-foreground hover:text-ink"
1249- } `}
1250- >
1251- Horizontal
1252- </ button >
1253- < button
1254- onClick = { ( ) => setFeatureTabsLayout ( "vertical" ) }
1255- className = { `px-3 py-1.5 text-xs rounded-md transition-colors ${
1256- featureTabsLayout === "vertical"
1257- ? "bg-background text-ink shadow-sm"
1258- : "text-muted-foreground hover:text-ink"
1259- } `}
1260- >
1261- Vertical
1262- </ button >
1263- </ div >
1264- </ div >
1265- </ CollapsibleCard >
1266-
12671228 < ClaudeCodeVersionSection />
12681229
12691230 { ! hasContent && ! search && (
0 commit comments