diff --git a/src/config/schema.rs b/src/config/schema.rs index 7d8c87975..8ea0a4294 100644 --- a/src/config/schema.rs +++ b/src/config/schema.rs @@ -297,7 +297,6 @@ pub struct ProviderConfig { #[serde(default)] pub reasoning_level: Option, } - // ── Delegate Agents ────────────────────────────────────────────── /// Configuration for a delegate sub-agent used by the `delegate` tool. diff --git a/web/src/App.tsx b/web/src/App.tsx index 85e71d82b..ad2a6de66 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -80,8 +80,8 @@ function PairingDialog({ onPair }: { onPair: (code: string) => Promise }) } function AppContent() { - const { isAuthenticated, loading, pair, logout } = useAuth(); - const [locale, setLocaleState] = useState('tr'); + const { isAuthenticated, pair, logout, loading } = useAuth(); + const [locale, setLocaleState] = useState('tr'); const setAppLocale = (newLocale: string) => { setLocaleState(newLocale);