fix(ui): add thinking tab to URL sync conditional

This commit is contained in:
kaitranntt
2026-01-08 16:26:50 -05:00
parent b996153e7f
commit 3ea549addd
@@ -16,7 +16,9 @@ export function useSettingsTab() {
? 'proxy'
: tabParam === 'auth'
? 'auth'
: 'websearch';
: tabParam === 'thinking'
? 'thinking'
: 'websearch';
const setActiveTab = useCallback(
(tab: SettingsTab) => {